@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}
p{
    font-family: "Mulish", sans-serif;
}
strong{
    font-family: "Playfair Display", serif;
}

/* NAVIGATION-------------START--------------HERE--------------- */

nav {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

nav .nav-active-item{
    margin: 0 6px;
    padding: 0px 10px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

nav .nav-active-item::before{
    content: "";
    background: #FB4D17;
    width: 0%;
    height: 35px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

nav .nav-active-item.active::before{
    content: "";
    background: #FB4D17;
    width: 100%;
    height: 35px;
    position: absolute;
    top: 0;
    right: 0;
}

nav .nav-active-item:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

nav .nav-active-link{
    color: #FFF;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-size: 14px;
}

nav .nav-show-btn,.nav-hide-btn{
    display: none;
}

@media only screen and (max-width: 767px){
    nav .nav-bar{
        display: block;
        width: 300px;
        height: 100vh;
        background: #083630;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 3;
        transition: all 0.3s ease-in-out;
    }
    nav .nav-active-item{
        margin: 20px 15px;
        width: max-content;
    }
    nav .nav-hide {
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FB4D17;
        color: #FFF;
        text-decoration: none;
        font-size: 22px;
        border-radius: 100px;
        margin: 20px 15px 50px auto;
    }
    nav .nav-show-btn,.nav-hide-btn{
        display: block;
    }    
}

/* NAVIGATION-------------ENDS--------------HERE--------------- */

/* BANNER-------------START--------------HERE--------------- */

.banner .banner-content{
    background-image: url(../images/banner-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.banner .banner-txt{
    width: 50%;
    margin-left: 130px;
    margin-top: 100px;
}

.banner h1{
    color: #083630;
    font-weight: 700;
    font-size: 40px;
    position: relative;
}

.banner h1::before{
    content: "";
    background: #FB4D17;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 100px;
}

.bttn{
    background: #083630;
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.bttn::before{
    content: '';
    background: #FB4D17;
    width: 0%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.4s ease-in-out;
}

.bttn:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

.bttn span{
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 1200px){
    .banner .banner-txt{
        margin-left: 50px;
    }
    .banner h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 992px){
    .banner .banner-txt{
        margin-left: 30px;
        width: 60%;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-content{
        background-position: left;
    }
    .banner .banner-txt{
        margin: 100px 12px 0 12px;
        width: 100%;
        text-align: center;
    }
    .banner p{
        width: 100% !important;
    }
    .banner .bttn{
        margin: 0 auto;
    }
    .banner h1::before{
        left: 50%;
        transform: translateX(-50%);
    }
    .banner h1 {
        font-size: 25px;
    }
}

/* BANNER-------------ENDS--------------HERE--------------- */

/* CATE-------------START--------------HERE--------------- */

.cate .cate-content{
    background: linear-gradient(90deg, rgba(221, 221, 221, 0.644) 00%, rgba(255,255,255,1) 100%);
    text-align: center;
    padding: 0 20px 50px 20px;
    border-radius: 10px;
    margin-top: 50px;
    border: 1px solid #EAEAEA;
    cursor: pointer;
}

.cate h5{
    color: #FB4D17;
    font-weight: 700;
}

.cate small{
    background: #FB4D17;
    color: #FFF;
    width: 100px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 40px;
    margin: 0 auto -40px;
    position: relative;
    top: -50px;
}

.cate .c-btn{
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#FFF;
    border-radius: 100px;
    background: #FB4D17;
    text-decoration: none;
    margin: 30px auto 0;
}

.cate .c-btn:hover{
    background: #083630;
}

/* CATE-------------ENDS--------------HERE--------------- */

/* ABOUT-------------START--------------HERE--------------- */

.about h1{
    color: #083630;
    font-size: 35px;
    font-weight: 700;
    position: relative;
}

.about h1::before{
    content: "";
    background: #FB4D17;
    width: 80px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 100px;
}

.about p{
    color:#7a7a7a;
}

@media only screen and (max-width: 1200px){
    .about h1{
        font-size: 30px;
    }
    .about p{
        font-size: 14px;
        width: 100% !important;
    }
}
@media only screen and (max-width: 992px){
    .about h1 {
        font-size: 23px;
    }
    .about p{
        font-size: 14px;
        width: 100% !important;
    }
}
@media only screen and (max-width: 767px){    
    .abt-content {
        text-align: center;
        margin: 15px 0;
    }
    .about img{
        height: 250px !important;
    }
    .about h1::before{
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ABOUT-------------ENDS--------------HERE--------------- */

/* CASE-------------START--------------HERE--------------- */


.case img{
    height: 500px;
    object-fit: cover;
}

.case .case-content::before {
    content: "";
    background: linear-gradient(0deg, rgba(251,77,23,1) 0%, rgba(255,255,255,0) 57%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.case .case-txt{
    position: absolute;
    bottom: 20px;
    left: 40px;
    right: 30px;
    width: 65%;
}

.case .swiper-slide {
    width: 70%;
}
.case .swiper-slide:nth-child(2n) {
    width: 60%;
}
.case .swiper-slide:nth-child(3n) {
    width: 50%;
}

@media only screen and (max-width: 992px){
    .case .case-txt {
        width: 90%;
    }
}
@media only screen and (max-width: 767px){
    .case .swiper-slide {
        width: 100%;
    }
    .case .swiper-slide:nth-child(2n) {
        width: 100%;
    }
    .case .swiper-slide:nth-child(3n) {
        width: 100%;
    }
    .case .case-txt{
        left: 20px;
        right: 20px;
    }
    .case p{
        font-size: 14px !important;
    }
}

/* CASE-------------ENDS--------------HERE--------------- */

/* TESTIMONIAL-------------START--------------HERE--------------- */

.testimonial{
    background: #FB4D17;
    padding: 80px 0;
}

.testimonial h1{
    font-size: 150px;
    line-height: 1;
    margin-bottom: -110px;
}

.testimonial p{
    font-size: 20px;
}

.testimonial .swiper-button-next:after,.swiper-button-prev:after {
    font-size: 25px;
}

.testimonial .swiper-button-next,.swiper-button-prev{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    color: #FB4D17;
    border-radius: 100px;
    font-weight: 800;
}

.testimonial .swiper-button-next:hover,.swiper-button-prev:hover{
    background: #083630;
    color: #FFF;
}

@media only screen and (max-width: 767px){
    .testimonial .test-content {
        width: 100% !important;
    }
    .testimonial p {
        font-size: 14px;
    }
    .testimonial .swiper-button-next,.swiper-button-prev{
        margin-top: 60px;
    }
}

/* TESTIMONIAL-------------ENDS--------------HERE--------------- */

/* SERVICS-------------START--------------HERE--------------- */

.service h1{
    color:#083630;
}

.service .serv-content{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service .serv-content::before{
    content: "";
    background: linear-gradient(0deg, rgba(251, 76, 23, 0.5) 50%, rgba(255,255,255,0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
}

.service .serv-content:hover::before{
    background: #FB4D17;
}

.service .serv-content:hover .serv-txt{
    bottom: -100%;
}

.service .serv-content:hover .img-txt{
    top: 50%;
}

.service .img-txt{
    position: absolute;
    top: 200%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 100%;
}

.service .serv-txt{
    position:absolute;
    bottom: 20px;
    left: 20px;
}

@media only screen and (max-width: 767px){
    .service .serv-title {
        width: 100% !important;
    }
    .service h1 {
        width: 100% !important;
    }
    .service p{
        font-size: 14px;
    }
}

/* SERVICS-------------ENDS--------------HERE--------------- */

/* STUDY-------------START--------------HERE--------------- */

.study h2{
    color: #083630;
    width: 80%;
}

.study img{
    border-radius: 100px;
    width: 140px;
    position: relative;
    top: -70px;
    margin-bottom: -50px;
}

.study h4{
    color:#083630; 
}

.study .study-content{
    background: linear-gradient(90deg, rgba(221, 221, 221, 0.644) 00%, rgba(255,255,255,1) 100%);
    padding: 0 20px 40px 20px;
    margin: 70px 0 30px 0;
    border: 1px solid #EAEAEA;
    cursor: pointer;
    position: relative;
}

.study .s-btn{
    background: #083630;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #FFF;
    text-decoration: none;
    font-size: 20px;
    position: absolute;
    bottom: -25px;
    right: 10px;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.study .study-content:hover .s-btn{
    transform: rotateY(360deg);
    visibility: visible;
}

@media only screen and (max-width: 1200px){
    .study h2 {
        width: 100% !important;
        font-size: 25px;
    }
    .study p{
        font-size: 14px;
    }
    .study h4{
        font-size: 17px !important;
    }
}
@media only screen and (max-width: 767px){
    .study .study-title {
        text-align: center;
    }
    .study h2 {
        font-size: 22px;
        margin: 10px 0 !important;
    }
}

/* STUDY-------------ENDS--------------HERE--------------- */

/* TEAM-------------START--------------HERE--------------- */

.team h1{
    color: #083630;
    width: 85%;
}

.team .t-txt{   
    transform: scale(1);
}

.team .img-txt{
    position: absolute;
    bottom: -20px;
    left: 0%;
    width: 100%;
    text-align: center;
    transform: scale(0);
}

.team .team-info:hover .img-txt{
    transform: scale(1);
}

.team .team-info:hover .t-txt{
    transform: scale(0);
}

.team .icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FB4D17;
    border-radius: 100px;
    color: #FFF;
    text-decoration: none;
    margin: 0 2px;
}

@media only screen and (max-width: 992px){
    .team h1{
        width: 100% !important;
    }
}
@media only screen and (max-width: 992px){
    .team h1{
        font-size: 26px !important;
    }
    .team .team-content{
        text-align: center;
        margin: 20px 0px !important;
    }
    .team .bttn{
        margin: 0 auto;
    }
}

/* TEAM-------------ENDS--------------HERE--------------- */

/* BLOG-------------START--------------HERE--------------- */

.blog .blog-content:hover img{
    transform: scale(1.1);
}

.blog h1{
    color: #083630;
}

.blog .blog-txt{
    background: linear-gradient(90deg, rgba(221, 221, 221, 0.644) 00%, rgba(255,255,255,1) 100%);
    padding: 20px 25px;
    border-radius: 0 0 10px 10px;
}

.blog h4{
    color:#083630;
}

.blog .blog-content:hover h4{  
    color:#FB4D17;
}

.blog .b-btn{
    color: #083630;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.blog .b-btn:hover{
    color:#FB4D17;
}

.brand .swiper-wrapper{
    transition-timing-function: linear !important;
}

.brand img{
    width: 120px;
    aspect-ratio: 3/1;
    object-fit: contain;
}

@media only screen and (max-width: 767px){
    .blog .blog-title {
        width: 100% !important;
    }
    .blog h1 {
        width: 100% !important;
        font-size: 30px;
    }
    .blog p{
        font-size: 14px;
    }
}

/* BLOG-------------ENDS--------------HERE--------------- */

/* FOOTER-------------START--------------HERE--------------- */

.footer{
    background: #FB4D17;
    padding: 100px 0;
    border-bottom: 1px solid #FFF;
}

.footer p{
    color: #FFF;
}

.footer li a{
    color:#FFF;
    font-size: 14px;
    text-decoration: none;
}

.footer li a:hover{
    color:#083630;
}

.footer li:hover{
    padding-left: 5px;
}

.pre-footer{
    background: #FB4D17;
}

@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}

/* FOOTER-------------ENDS--------------HERE--------------- */

/* ABOUT-------------PAGE-------------START--------------HERE--------------- */

/* BANNER_2-------------START--------------HERE--------------- */

.banner-2{
    background-image: url(../images/abt-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-2::before{
    content: "";
    background: #08363059;
    width:100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-2 .banner-content::before{
    content: "";
    background: #FB4D17;
    width: 5px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-2 h1{
    font-size: 50px;
    font-weight: 800;
}

@media only screen and (max-width: 767px){
    .banner-2 h1{
        font-size: 45px;
    }
}

/* BANNER_2-------------ENDS--------------HERE--------------- */

/* GROWTH-------------START--------------HERE--------------- */

.growth{
    background: #F2F3FA;
    padding: 130px 0 100px 0;
}

.growth .growth-content{
    background: #FFF;
    box-shadow: 0 0 10px rgb(196, 196, 196);
    padding: 0 15px 50px 15px;
    transition: all 0.4s ease-in-out;
    border-bottom: 5px solid #FFF;
}

.growth .growth-content:hover{
    border-color: #FB4D17;
    transform: translateY(20px);
}

.growth small{
    width: 100px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FB4D17;
    color: #FFF;
    border-radius: 100px;
    font-size: 40px;
    margin: 0 auto;
    position: relative;
    top: -50px;
    margin-bottom: -45px;
}

.growth h4{
    color: #083630;
}

@media only screen and (max-width: 992px){
    .growth p{
        font-size: 14px
    }
    .growth h4{
        font-size: 18px;
    }
    .growth .growth-content{
        margin: 15px 0;
    }
}

/* GROWTH-------------ENDS--------------HERE--------------- */

/* PORTFOLIO-------------START--------------HERE--------------- */

.portfolio h1{
    color: #083630;
}

.portfolio .controls{
    list-style: none;
}

.portfolio .button{
    margin: 0 15px;
    font-weight: 600;
    color: #083630;
    font-size: 18px;
    cursor: pointer;
    position: relative;
}

.portfolio .button::before{
    content: "";
    background: #FB4D17;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.4s ease-in-out;
}

.portfolio .button.active::before{
    content: "";
    background: #FB4D17;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

.portfolio .button:hover::before{
    transform: scale(1);
}

.portfolio .button:hover{
    color: #FB4D17;
}

.portfolio .button.active{
    color: #FB4D17;
}  

.portfolio h5{
    color: #083630;
}

.portfolio .port-content{
    margin: 20px 0;
}

.portfolio .port-content:hover h5{
    color: #FB4D17;
}

.portfolio .port-content:hover img{
    transform: scale(1.1);
}
@media only screen and (max-width: 1200px){
    .portfolio h5{
        font-size: 18px;
    }
}
@media only screen and (max-width: 992px){
    .portfolio h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px){
    .portfolio .button{
        font-size: 16px;
        margin: 5px 10px;
    }
    .portfolio .port-title{
        width: 100% !important;
    }
    .portfolio h1{
        font-size: 25px;
    }
}

/* PORTFOLIO-------------ENDS--------------HERE--------------- */

/* CONTACT-------------START--------------HERE--------------- */

.contact h1{
    color: #083630;
}

.contact p{
    color: #7a7a7a;
}

.contact #name{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #d1d1d1;
    margin-bottom: 15px;
    font-size: 14px;
    border-radius: 5px;
}

.contact #name:focus{
    outline: none;
}

.contact .contact-content{
    background: #FFF;
    box-shadow: 0 0 10px gray;
    padding: 70px;
    border-radius: 10px;
}

@media only screen and (max-width: 992px){
    .contact .contact-content {
        padding: 60px 20px;
    }
}
@media only screen and (max-width: 767px){
    .contact .contact-content {
        padding: 60px 12px;
        text-align: center;
    }
    .contact h3{
        font-size: 20px;
    }
    .contact p {
        font-size: 14px;
    }
    .contact .bttn{
        margin: 0 auto;
    }
}

/* CONTACT-------------ENDS--------------HERE--------------- */

/* ABOUT-------------PAGE-------------ENDS--------------HERE--------------- */