@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary:#71BF44;
    --secondry:#272974;
    --primary-light:rgba(113, 191, 68,0.5);
    --primary-lighter:rgba(113, 191, 68,0.05);
    --secondry-light:rgba(39, 41, 116,0.5);
    --secondry-lighter:rgba(39, 41, 116,0.1);
}
body{
    font-family: 'Inter', sans-serif;
}
ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
    color:white;
}

a:hover{
    color:#71BF44;
}
img{
    width: 100%;
}
.section-padding{
    padding: 4rem 0 0 0;
}
.section-title.center {
    width: 100%;
    display: flex;
    justify-content: center;   
}
.section-title h2{    
    width: 100%; 
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--secondry);
}
.product-description p{
    font-size: 1.2rem;
}
.section-title.center h2{
    text-align: center; 
    width: 40%; 
    font-weight: 700;
    font-size: 4.5rem;
    color: var(--secondry);

}
.offering-title h1{
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}
.section-title h2 span{
    color: var(--primary);
}
.section-title.center h2 span{
    color: var(--primary);
}
.section-description.center{
    width: 100%;
    display: flex;
    justify-content: center;
}
.section-description.center p{
    text-align: center;
    width: 40%;
}
.section-description{
    display: flex;
    justify-content: center;
    text-align: center;
}
.section-description p{
    width: 80%;
    font-size: 1.5rem;
    font-weight: 500;
}
a.btn{
    color: #fff;
    z-index: 2;
}
.btn{
    position: relative;
    border: 1px solid var(--secondry);
}
.btn:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondry);    
    z-index: -1;
    transition: all 0.5s;    
}
.btn:hover{
    color: var(--secondry);
}
.btn:hover:before{
    height: 0;
}

.page-title{
    color: var(--secondry);
    margin-bottom: 20px;
}
.page-title h2{
    position: relative;
}
.page-title.center{
    text-align: center;
}
.page-title.center h2{
    text-align: center;
    display: inline-block;
    font-weight: 700;
}
.page-title h2:before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    /* background: var(--primary); */
    background-image: linear-gradient(
        to right,
        transparent,
        var(--primary),
        transparent

    );
}

/* =============== header ============= */

.top-header-wrapper{
    width: 100%;
    background: var(--secondry);
    padding: 5px 3rem;
}
.top-header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top:8px;
}
.top-left ul{
    display: flex;
}
.top-left ul li{
    padding-right: 15px;
}
.top-left ul li a{
    color: #fff;
    
    font-size: 1.5rem;
}
.top-right ul{
    display: flex;
    align-items: center;
}
.top-right ul li{
    margin-left: 20px;
}
.top-right ul li i{
    color: #fff;
    padding-right: 8px;
}
.top-right ul li a{
    color: #20c997;
    font-size: .9rem;
}
.main-menu-wrapper{
    padding: 0 3rem;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    background: var(--primary);
}
.main-menu{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.main-menu .logo{
    width: 80px;
    padding: 5px 0;
}
.main-menu .logo a{
    width: 100%;
    font-size: 2rem;
}
.main-menu .logo a img{
    width: 100%;
    border-radius: 45px;
}
.menu{
    height: 100%;
}
.menu>ul{
    height: 100%;
    display: flex;
    margin-bottom: 0;
}
.menu ul li{
    height: 100%;
    display: flex;
    align-items: center;
    padding:  0 20px 0 20px;
}
.menu ul li a span,
.menu ul li a{
    color: #ffffff;
    font-weight: 600;
    font-size: .9rem;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}
.menu ul li.hassubMenu a i{
    padding-top: 30px;
}
.menu>ul>li>a{
    line-height: 80px;
}
/* .menu ul li:hover,
.menu ul li.active{
    background: var(--secondry);    
} */
.menu ul li:hover a i,
.menu ul li:hover a,
.menu ul li.active a{
    color: #ffffff;
}
.menu ul li.hassubMenu{
    position: relative;    
}
.menu ul li.hassubMenu>a{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.menu ul li.hassubMenu i{
    color: #ffffff;
    padding-left: 5px;
    padding-top: 2px;
}
.menu ul li.hassubMenu .subMenu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    border-radius: 10px;
    background: var(--primary);
    /* background: rgba(255, 255, 255, 1); */
    display: block;
    height: 0;
    visibility: hidden;
    opacity: 0;
    padding-left: 0;
    transition: all .5s ease;
    z-index: 99;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.subMenu.active{
    visibility: visible;
    min-height: 100px;
    width: 100%;
    height: auto;    
    opacity: 1;
}

.subMenu li{
    height: auto!important;
    padding: 0!important;
}
.subMenu li a{
    width: 100%;
    padding: 15px 20px;
    color: var(--secondry)!important;
    border-bottom: 1px solid var(--secondry-lighter);
}
.hamburger{
    position: relative;
    display: none;
    width: 30px;

}
.hamburger span{
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.5s;
}
.hamburger span:nth-child(1){
    position: absolute;
    top: -8px;
}
.hamburger span:nth-child(3){
    position: absolute;
    top: 8px;
}
.hamburger.active span:nth-child(2){
    display: none;
}
.hamburger.active span:nth-child(1){
    transform: rotate(45deg);
    top: 0
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg);
    top: 0;
}

/* ====================== hero =========================== */
#hero{
    width: 100%;
    height: 85vh;
    background: url(../images/her-banner.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
}
#hero:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}
#hero .hero-wrapper .hero-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    z-index: 3;
    width: 40%;
}
.hero-content h2{
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
}
.hero-content h2 span{
    color: var(--primary);
}
.hero-content p{
    color: #fff;
    font-size: 1.3rem;
}
.hero-content a{
    background: var(--primary);
    color: #fff;
    padding: 10px 50px;
    border-radius: 10px;
}

/* ========================= about ======================= */
#about{
    width: 100%;
    position: relative;
}
.icon-with-title-dec-wrapper{
    display: flex;
    gap: 50px;
    padding: 4rem;
}
.icon-with-title-dec{
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transition: all 0.5s;
}
.icon-with-title-dec:hover{
    transform: translateY(-40px);
}
.icon-with-title-dec .icon{
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.icon-with-title-dec .icon i{
    color: #fff;
    font-size: 2rem;
}
.icon-with-title-dec .title h3{
    color: var(--secondry);
    font-weight: 700;
}
.icon-with-title-dec .desc p{
    text-align: center;
}
/* ============================ product section ================ */
.image-text-section{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    height: 100%;
    align-items: stretch;
}
.image-text-section .image-block,
.image-text-section .text-block{
    flex: 1;
    /* flex: 50%;
    max-width: 50%;    */
    max-width: 50%;
}
.image-text-section .image-block{
    height: auto;
}
.image-text-section .image-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-text-section .text-block{
    background: rgba(113, 191, 68, 0.2);
    padding: 6rem 6rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}
.text-block:before{
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 20px solid rgba(113, 191, 68, 0.11);
}
.image-text-section .text-block h4{
    color: rgba(113, 191, 68, 0.9);
}
.image-text-section .text-block h2{
    background: rgba(113, 191, 68, 0.4);
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 30px;
    /* color: #fff; */
    color: var(--secondry);
    font-weight: 750;
    font-size: 2.5rem;
}
.image-text-section .text-block p{
    margin-bottom: 30px;
}
/* .image-text-section .text-block a{
    padding: 10px 30px;
    background: rgba(113, 191, 68, 1);
    color: #fff;
    border-radius: 10px;
} */
 .product-button-wrapper .product-link1 a{
    padding: 10px 30px;
    background: rgba(113, 191, 68, 1);
    color: #fff;
 }
.more-details{
    border: 2px solid var(--primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}


/* ================== why-us =========================== */
#why-chose-us{
    background: rgba(113, 191, 68, 0.03);
}
.why-us-wrapper{
    width: 100%;
    padding: 5rem 0;
    display: flex;
    gap: 50px;
    justify-content: center;
  }
  .why-us-wrapper .why-us-column{
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.5s;
  }
  .why-us-wrapper .why-us-column:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .why-us-column .why-us-icon{
    width: 80px;
    height: 80px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .why-us-column .why-us-icon img{
    width: 50px;
    filter: brightness(0) invert(1);
  }
  .why-us-column .why-us-icon i{
    color: #fff;
    font-size: 2rem;
  }
  .why-us-column .why-us-title h5{
    color: var(--dark-green);
    font-weight: 700;
    font-size: 1.3rem;
  }
  .why-us-column .why-us-text p{
    line-height: 1.4rem;
    font-size: 1.12rem;
  }

/* =================================== our blogs ======================   */
#blogs{
    position: relative;
}
#blogs .swiper-pagination{
    bottom: -30px;
}
.blogs-wrapper{
    width: 100%;
    overflow: hidden;
}
.blogs-wrapper .blogs{
    width: 100%;
    display: flex;
}
.blogs-wrapper .blogs .blog{
    height: 350px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}
.blogs-wrapper .blogs .blog .blog-img{
    margin-top:-5px;
    width: 100%;
    height: 70%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.blogs-wrapper .blogs .blog .blog-img:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
.blogs-wrapper .blogs .blog .blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogs-wrapper .blogs .blog .blog-title{
    width: 100%;    
    /* position: absolute; */
    margin-top: 10px;
    bottom: 20px;
    /* background: rgba(113, 191, 68, 0.9); */
    padding: 5px 10px;
}
.blogs-wrapper .blogs .blog .blog-title h4{
    color: var(--secondry);
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
}
.blogs-wrapper .blogs .blog .blog-category{
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--primary);
    padding: 0 10px;
}
.blogs-wrapper .blogs .blog .blog-category p{
    margin-bottom: 0;
}
.blog-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.blog-btn a{
    background: var(--primary);
    color: #fff;
    padding: 5px 30px;
    border-radius: 10px;
}
/* ===========================offering=================== */
#offering{
    width: 100%;
    /* height: 100vh; */
    /* background: rgba(113, 191, 68,.3); */
}
.offering-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.offering-wrapper:before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 40%;
    background: rgba(39, 41, 116,1);
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    z-index: 3;
}
.offering-wrapper .offering-left,
.offering-wrapper .offering-right{
    flex: 50%;
    max-width: 50%;
}
.offering-left .offering-img{
    width: 100%; 
    height: 100vh;   
    background-image: url('../images/we-offering.jpg');
    background-size: cover; 
    background-position: center;
    position: relative;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offering-left .offering-img:before{
    content: '';
    position: absolute;
    top: 0;   
    width: 100%;
    height: 100%;
    background: rgba(39, 41, 116,0.9);
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    z-index: 2;
}
.offering-img .section-title h2{
    position: relative;
    z-index: 99;
    color: #fff;
    font-size: 5rem;
    
}
.offering-right{
    padding: 0 4rem 0 5rem;
}
.offering-content ul li{
    list-style: disc;
    margin-bottom: 20px;
    font-size:1.15rem;
}
  
/* ========================= testimonial ==================== */
.testi-whole-wrapper{
    padding: 2rem 5rem;
    position: relative;
}
.testi-title{
    margin-bottom: 30px;
}
.testi-title h2{
    text-align: center;
    font-size: 2rem;
}
.testi-outer-wrapper{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
/* .testi-inner-wrapper{           
    display: -webkit-inline-box;
    gap: 20px;
    transition: all 0.5s;
} */
.testi-inner-wrapper .testi-box{    
    border:1px solid #fce8d3;
    border-radius: 20px;
    padding: 20px;
    background: rgba(113, 191, 68, 0.07);
    position: relative;
    
}
.testi-box .testi-inner{
    padding-top: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.testi-box .testi-inner:before{
    font: var(--fa-font-solid);
    content: '\f10d';
    position: absolute;
    top: 0;
    color: var(--primary);
    font-size: 2rem;
}
.testi-box .testi-inner .testi-text{
    padding: 10px 10px 20px 10px;
    display: flex;
    align-items: center;
}
.testi-box .testi-inner .testi-text p{
    text-align: center;
    font-size: 1.2rem;
}
.testi-person{
    position: relative; 
}
.testi-box .testi-inner .testi-person:before{
    content: '';
    position: absolute;
    top: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary);
}
.testi-box .testi-inner .testi-person h5{
    text-align: left;
    padding-left: 25px;
    font-size: 1.7rem;
    margin: 0;
}

/* ================================footer======================== */
footer{
    padding: 5rem 5rem 2rem 5rem;
    background: var(--secondry);
}
.footer-wrapper{
    width: 100%;
    display: flex;
    gap: 30px;
}
.footer-wrapper .footer-column{
    /* flex: 25%;
    max-width: calc(25% - 30px); */
    padding: 0 20px;
}
.footer-wrapper .footer-column:nth-child(1){flex: 3;}
.footer-wrapper .footer-column:nth-child(2){flex: 2;}
.footer-wrapper .footer-column:nth-child(3){flex: 2;}
.footer-wrapper .footer-column:nth-child(4){flex: 3;}
.footer-title{
    margin-bottom: 30px;
}

.footer-title h3{
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 750;

}
.footer-logo{
    margin-bottom: 20px;
    width: 100px;
}
.footer-logo img{
    width: 100%;
}
.footer-comp-about{
    margin-bottom: 50px;
}
.footer-comp-about p{
    color: #fff;
    line-height: 1.5rem;
    font-size: 1rem;
    text-align: left;
}
.footer-social h4{
    color: var(--primary);
    margin-bottom: 10px;
}
.footer-social ul{
    display: flex;
}
.footer-social ul li{
    padding-right: 20px;
}
.footer-social ul li a i{
    font-size: 1.5rem;
    color: #fff;
}
.footer-link ul li{
    margin-bottom: 20px;
}
.footer-link ul li a{
    color: #fff;
    transition: all 0.5s;
}
.footer-link ul li a:hover{
    color: var(--primary);
    transform: translateX(20px);
}
.footer-icon-box{
    margin-bottom: 30px;
}
.footer-icon-box .footer-icon{
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}
.footer-icon-box .footer-icon i{
    color: var(--primary);
    padding-right: 10px;
    font-size: 1.3rem;
}
.footer-details a,
.footer-details p{
    color: #fff;
}

a:hover{
    color:#71BF44;
}

/* =========================== about us ======================= */
#about-details{
    background: var(--primary-lighter);
    font-family: 'Inter', sans-serif;
}
.about-details-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.about-details-content h2{
    font-weight: 800;
    color: var(--secondry);
    font-size: 3rem;
}
.about-details-content h5{
    color: var(--secondry);
    font-size: 1.5rem;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--secondry);
}
.about-details-content p{
    padding: 10px 0 10px 0;
}
.about-details-content a{
    display: inline-block;   
    padding: 10px 30px;
    color: #fff;
    z-index: 2;
}
.about-details-images{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

#business-partner{
    background: var(--primary-lighter);
    padding-top: 10rem;
}
.logo-slider{
    width: 100%;
    height: var(--height);
    /* border : 1px solid #000; */
    overflow: hidden;
}
.slider-wrapper{
    display: flex;
    width: 100%;    
    min-width: calc(var(--width) * var(--total-count)); 
    position: relative;   
}
.logo-slider .slider-wrapper .slide-item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autorun 15s linear infinite;
    animation-delay: calc(15s / var(--total-count) * (var(--position) - 1));
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.slider-wrapper .slide-item img{
    width: 100%;
}
@keyframes autorun {
    from{
        left: 100%;
    }
    to{
        left: calc(var(--width) * -1);
    }
}

.logo-slider-two{
    width: 100%;
    height: var(--height);
    /* border : 1px solid #000; */
    overflow: hidden;
}
.logo-slider-two .slider-wrapper .slide-item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: -100%;
    animation: autorun-left 30s linear infinite;
    animation-delay: calc(30s / var(--total-count) * (var(--position) - 1));
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
@keyframes autorun-left {
    from{
        left: calc(var(--width) * -1);
    }
    to{
        left: 100%;
    }
}
#our-achievements{
    background: var(--secondry);
    color: #fff;
}
.achievement-title h2{
    text-align: center;
    margin-bottom: 15px;
}
.achievement-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.achievement-text p{
    text-align: center;
    width: 70%;
}
.achievement-block-wrapper{
    width: 100%;
}
.ach-blocks{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    /* place-items: center; */
}
.ach-blocks .ach-block{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ach-blocks .ach-block:nth-child(-n+4) {
    border-bottom: 1px solid #fff;
}
.ach-blocks .ach-block:nth-child(2n){
    border-left: 1px solid #fff;
}
.ach-blocks .ach-block:nth-child(3n){
    border-left: 1px solid #fff;
}
.ach-blocks .ach-block:nth-child(n+6){
    border-left: 1px solid #fff;
}
.ach-block .ach-icon i{
    color: var(--primary);
    font-size: 2rem;
}

.mis-vis-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mis-vis-wrapper .mission,
.mis-vis-wrapper .vision{
    width: 50%;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.mis-vis-wrapper .mission:before,
.mis-vis-wrapper .vision:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

.mis-vis-wrapper .mission:after,
.mis-vis-wrapper .vision:after{
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 1px;
    height: 100%;
    background: var(--primary);
}
.mis-vis-wrapper .vision{
    align-self: flex-end;
}
.value-wrapper{
    position: relative;
    padding-left: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.value-wrapper .values{
    width: 50%;
    padding-left: 20px;    
}
.value-wrapper .values:before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: 2px solid var(--primary);
}
.value-wrapper .values:after{
    content: '';
    position: absolute;
    top: 10px;
    left: calc(50% + 5px);
    width: 1px;
    height: 100%;
    background: var(--primary);
}

/* =========================== contact us ================== */
#contact-us{
    width: 100%;
    padding: 2rem 7rem;
  }
  .contact-us-wrapper{
    width: 100%;
    display: flex;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 5rem;
    border-radius: 50px;
    flex-wrap: wrap;
  }
  .contact-us-wrapper .contact-us-details-left,
  .contact-us-wrapper .contact-us-details-right{
    flex: 50%;
    max-width: 50%;
  }
  .contact-us-wrapper .footer-map{
    width: 100%;
  }
  .contact-title{
    margin-bottom: 40px;
  }
  .contact-title h2{
    font-size: 2rem;
    /* text-transform: uppercase; */
    color: var(--primary);
    font-weight: 700;
  }
  
  .contact-icon-box{
    margin-bottom: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    /* background: var(--primary-light); */
    min-height: 50px;
    padding: 0 10px;
  }
  .contact-icon-box .contact-icon i{
    color: var(--primary) ;
    font-size: 1.5rem;
  }
  .contact-icon-box .contact-text a{
    text-decoration: none;
  }
  .contact-icon-box .contact-text a,
  .contact-icon-box .contact-text p{
    color: var(--secondry);
    margin-bottom: 0;
    font-weight: 700;
  }
  .c-form{
    padding: 0 3rem;
  }
  .c-form form textarea,
  .c-form form input{
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid var(--primary-light);
  }
  .c-form form input[type="submit"]{
    background: var(--secondry);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
  }


/* ====================== product page ======================   */
.product-content-wrapper{
    padding: 2rem 2rem 1rem 3rem;
}
.product-content-wrapper .product-title h2{
    font-weight: 700;
    font-size: 4rem;
    color: #71BF44;
    margin-bottom: 20px;
}
.product-quality{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.product-quality .product-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--primary-lighter);
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.product-box .product-text{
    text-align: center;
}
.product-box .product-icon i{
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
}
.product-box .product-text p{
    text-transform: uppercase;
    font-size: 0.8rem;
}
.product-link a{
    padding: 10px 30px;
    background: var(--primary);
    color: #fff;
}
.product-details-wrapper{
    width: 100%;
    display: flex;
    gap: 40px;
}
#product-details{
    margin-bottom: 5rem;
}
.product-details-box{
    flex: 1;
    height: 400px;
    border: 1px solid var(--primary-light);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
.product-details-box .product-details-icon{
    margin-bottom: 10px;
    height: 50px;
    width: 50px;
    background: var(--secondry);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.product-details-box{
    border-radius: 20px;
}

.product-details-box .product-details-icon i{
    font-size: 2rem;
    color: #fff;
}
.product-details-box .product-details-text{
    text-align: center;
}
.product-details-box .product-details-text h4{
    font-size: 2.2rem;
}
.product-details-box .product-details-text p{
    font-size: 1.12rem;
}
#more-details{
    margin-bottom: 5rem;
}
.product-button-wrapper{
    display: flex;
    align-items: center;
}
.product-button-wrapper .product-link2{
    margin-left: 30px;
}
.product-link2 a{
    padding: 10px 30px;
    background: var(--secondry);
    color: #fff;
    /* border-radius: 10px; */
}



.text-block p{
    font-size: 1.15rem;
}
/* =================== media query ===================== */

@media screen and (max-width:580px) {
    :root{
        font-size: 14px;
    }
    #hero .hero-wrapper .hero-content{
        width: 90%;
    }
    .footer-wrapper{
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-wrapper .footer-column {
        flex: 100%!important;
        max-width: calc(100% - 20px)!important;
        padding: 0 20px;
    }
    footer {
        padding: 3rem 1rem 2rem 1rem;
    }
    #hero .hero-wrapper .hero-content {
        width: 80%!important;
    }
    .hero-content h2 {
        font-size: 3rem;
    }
    .image-text-section .text-block {
        padding: 2rem;
    }
    .image-text-section{
        height: auto;
    }
    .section-description.center p, .section-description p {
        width: 80%!important;
    }
    .top-header-wrapper{
        padding: 5px 1rem;
    }
    .top-right ul{
        margin-left: 0;
    }
    .top-right ul li{
        margin-left: 2px;
    }
    
}


@media screen and (max-width:768px) {
    .hamburger{
        display: block;
    }
    .main-menu-wrapper{
        position: relative;
    }
    .main-menu{
        position: unset;
    }
    .menu{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background:var(--secondry);
        display: none;
        z-index: 9;
    }
    .menu.active{
        display: block;
    }
    .menu ul{
        display: block;
    }
    .menu ul li{
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 10px 20px;
        flex-direction: column;
    } 
    .menu ul li a{
        width: 100%;
        color: #fff;
    }
    .menu ul li.hassubMenu i{
        color: #fff;
    }
    .menu ul li.hassubMenu .subMenu {
        position: relative;
        width: 100%;
    }
    .menu ul li.hassubMenu .subMenu.active{
        visibility: visible;
        opacity: 1;
        height: auto;
    }
    #hero .hero-wrapper .hero-content{
        width: 60%;
    }
    .section-title.center h2{
        width: 60%;
    }
    .section-description.center p,
    .section-description p {        
        width: 80%;
    }
    .icon-with-title-dec-wrapper{
        flex-wrap: wrap;
        padding: 10px;
    }
    .why-us-wrapper{
        flex-wrap: wrap;
        gap: 30px;
    }
    .why-us-wrapper .why-us-column{
        flex: 50%;
        max-width: calc(50% - 30px);
    }
    .value-wrapper .values{
        width: 100%;
    }
    .mis-vis-wrapper .mission,
    .mis-vis-wrapper .vision{
        width: 100%;
    }
    .value-wrapper .values:after,
    .value-wrapper .values:before{        
        left: 0;       
    }
    .value-wrapper .values:after{
        left: 5px;
    }
    .ach-blocks {       
        grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    }
    .ach-blocks .ach-block{
        border: 1px solid #fff;
    }
    #contact-us{
        padding: 2rem 1rem;
      }
      .contact-us-wrapper .contact-us-details-left, .contact-us-wrapper .contact-us-details-right {
        flex: 100%;
        max-width: 100%;
      }
      .contact-us-wrapper{
        padding: 2rem 1rem;
      }
      .contact-icon-box .contact-icon img{
        width: 70px;
      }
      .c-form {
        padding: 0 1rem;
      }
      .product-details-wrapper{
        flex-wrap: wrap;
      }
      .product-details-box {
        flex: 100%;
        max-width: 100%;
    }

    
    
}


@media screen and (max-width:992px) {
    .section-description.center p,
    .section-description p {
        width: 60%;
    }
    .icon-with-title-dec-wrapper {
         gap: 10px;
        padding: 1rem;
    }
    .why-us-wrapper {        
        gap: 10px;
        justify-content: center;
    }
    .footer-wrapper{
        flex-wrap: wrap;
    }
    .footer-wrapper .footer-column {
        flex: 50%;
        max-width: calc(50% - 30px);
        padding: 0 20px;
    }
    footer {
        padding: 5rem 2rem 2rem 2rem;
    }
    .image-text-section .image-block, .image-text-section .text-block {
        flex: 100%;
        max-width: 100%;
    }
    .image-block{
        order: 1;
    }
    .text-block{
        order: 2;
    }
    .offering-wrapper .offering-left, .offering-wrapper .offering-right {
        flex: 100%;
        max-width: 100%;
    }
    .offering-wrapper:before{
        display: none;
    }
    .offering-right{
        padding: 2rem 4rem 0 5rem;
    }
}


@media screen and (min-width:768px){
    .menu ul li.hassubMenu:hover .subMenu{
        visibility: visible;
        min-height: 100px;
        height: auto;    
        opacity: 1;
    }
    
}