@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
    --main-clr: #35A73B;
    --second-clr: #2E75B7;
    --main-light: hsla(123, 52%, 43%, 0.15);
    --second-light:hsla(209, 60%, 45%, 0.15);
    --main-light-1:hsla(123, 47%, 48%, 0.15);
    --main-light-2:hsla(123, 47%, 48%, 0.05);
    --main-dark-1:hsl(209, 86%, 12%);
    /* --second-light-1:hsla(209, 60%, 45%, 0.15); */
    --second-light-2:hsla(209, 60%, 45%, 0.05);
    --third-color: #8dc7ff;
    --fourth-color: #ffffff;
    --fifth-color: #000000;
    /* --third-color: #0059ff; */
    /* --fourth-color: #ffffff; */
    /* --fifth-color: #000000; */
}

body{
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}
a{
    display: block;
    text-decoration: none !important;
}
ul{
    padding: 0 !important;
}
ul,li{
    list-style: none;
    margin-left: 0;
    
}

.mtop{
    margin-top: 200px;
}
.mtop-alt{
    margin-top: 130px;
}
.mbot{
    /* margin-bottom: 60px; */
}

.mtop.mbot{
    /* margin: 100px 0; */
}
span{
    display: inline-block;
}
.nav-mobile{
    display: none !important;
}
header{
    border-radius: 30px;
    background-color: #fffffff0;
    backdrop-filter: blur(30px);
    padding: 10px 20px;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 15%);
    position: fixed;
    top: -10px;
    left: 0;
    right: 0;
    z-index: 999;
    font-weight: 400;
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;

}
.nav-parts {
    justify-content: space-between;
    display: flex;
    /* align-items: center; */
    width: 100%;
    height: 100%;
}
a.logo {
    display: grid;
    align-items: center;
}
.part-1 {
    align-items: center;
}
.part-2 {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    /* margin: auto 0; */
}
.call-btn{
    padding: 12px 30px;
    background: rgba(66, 181, 72, 0.15);
    color: var(--main-clr);
    font-weight: 300;
    font-size: 18px;
    border-radius: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-self: center;
    height: max-content;
    transition: 0.5s all;
}
.call-btn:hover{
    background: var(--main-clr);
    color: #c8ffb8;
}
.call-btn p{
    margin: 0;
}

.contact-info {
    display: inline-flex;
}
.contact-info a {
    padding: 4px 10px;
    /* background: red; */
    border-radius: 10px;
    transition: 0.5s;
    color: var(--second-clr);
}
.contact-info a:hover{
    background: #E9E9E9;
}
.navbar1 ul{
    margin: 0;
}


.dropdown-menu1 {
    /* background: #E9E9E9; */
    background: #fff;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 15%);
    display: flex;
    padding: 10px !important;
    border-radius: 20px !important;
    width: 100%;
    width: max-content;
    /* max-width: 520px; */
    height: max-content;
    position: absolute;
    left: -12px;
    top: 40px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    display: none;
}
.dropdown1:hover .dropdown-menu1{
    visibility: visible;
    opacity: 1;
    display: flex;
}
.dropdown-menu1 li a{
    padding: 5px 10px;
    border-radius: 10px;
    transition: 0.5s;
    display: block;
    
}
.dropdown-menu1 li a:hover{
    background: #E9E9E9;
    color: var(--second-clr);
}
.submenu-overflow{
    scrollbar-color: rgb(255, 255, 255) rgb(164, 164, 164);
    scrollbar-width: 10px;
}
.submenu a{
    display: flex;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.submenu a:hover {
    background-color: #f1f1f1;
}
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 9px;
}

.nav-item {
    color: black;
    padding: 10px 15px;
    transition: 0.2s;
}
.nav-item.active{
    background-color: #e7e7e7;
    border-radius: 15px;
    color: var(--second-clr);
}
.nav-item.contact{
    padding: 15px 30px !important;
    border-radius: 20px !important;
    background: var(--second-clr) !important;
    color: #fff;
    box-shadow: -5px -5px 20px rgb(0 0 0 / 15%);
    transition: 0.5s;
}
.nav-item.contact:hover{
    background: #fff !important;
    color: var(--second-clr) !important;
    box-shadow: 5px 5px 20px rgb(0 0 0 / 15%);
}
.nav-item:hover {
    background-color: #e7e7e7;
    border-radius: 15px;
    color: var(--second-clr);
}
.nav-item.dropdwn {
    background-color: #e7e7e7;
    border-radius: 15px;
    height: 50px;
    overflow-x: scroll;
}

/* *****hero****** */

.landing{
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.landing img{
    width: 105%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    position: relative;
    /* top: 0; */
    left: -13px;
    /* z-index: -1; */
    /* opacity: 0.7; */
}
.landing .container{
    height: 100%;
}
.landing-content{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    /* width: 100%; */
    flex-wrap: wrap;
    margin-right: 30px;
    margin-left: calc(100% - 500px); ;
    height: 100%;
    /* margin-top: 30px; */
    overflow: hidden !important;
}

.landing h1{
    font-size: 50px;
    font-weight: 400;
    color: #000000;
    line-height: 70px;
    margin-bottom: 20px;
    text-transform: capitalize;
    max-width: 450px;
    
}

.landing-content h1 span{
    padding: 0 10px;
    background-color: var(--main-clr);
    color: #ffffff;
    border-radius: 15px;
    font-weight: 400;
}

.cta-btn{
    border-radius: 15px;
    padding: 10px 20px;
    background-color: var(--second-clr);
    color: #ffffff;
    font-weight: 400;
    transition: 0.5s;
    width: max-content;
    text-decoration: none;
    margin-bottom: 20px;
}

.landing .cta-btn:hover{
    background-color: #1146a9;
    color: #ffffff;
}
.cta-btn-alt {
    border-radius: 15px;
    padding: 10px 20px;
    background-color: var(--second-clr);
    color: #ffff;
    font-weight: 400;
    transition: 0.5s;
    width: max-content;
    text-decoration: none;
    margin-bottom: 20px;
}
.cta-btn-alt:hover{
    background-color: #1146a9 ;
    color: #ffffff;
}
 .points-main{
    background-color: var(--main-clr);
    /* padding: 30px; */
    border-radius: 30px;
    max-width: 992px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    bottom: 50px;
    color: #ffffff;
 }
 .points-main .bordered{
    border-right: solid 2px #ffffff;
 }
 .points-main .points{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
 }
 .points-main .points p{
    margin: 0 !important;
    font-weight: 400;
    font-size: 20px;
 }




/* --- services --- */
#services{
    /* margin: 80px 0px; */
}
.next_button, .prev_button{
    position: absolute;
    top: 45%;
    border: none;
    border-radius: 10px;
    background:rgba(0, 0, 0, 0.641);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    z-index: 1;
}
.next_button{
    right: -11px;
}
.prev_button{
    left: -11px;
}

#service_cards .row > div {
    margin-top: 22px;
}
.service_cards .service_name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px;
    position: relative;
    bottom: 71px;
    /* left: 0px; */
    color: rgb(0, 0, 0);
    margin-left: 8px;
    background: #edfff7f2;
    padding-right: 10px;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(30px);
    /* width: 100%; */
    /* background-image: linear-gradient(358deg, #0000009c, #0000001a); */
    /* height: 100%; */
    border-radius: 17px;
    margin: auto 8px;
}
.service_cards 
.service_name h3{
        font-size: 18px;
        margin: 0;
        padding: 0;
        color: var(--second-clr);
    }
.service_cards 
.service_name p{
        font-size: 15px;
        padding: 0;
        margin: 0 ;
        color: white;
        font-weight: 200;
    }
.service_img_card{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service_img_card img{
    border-bottom: solid 2px var(--bg-secondary);
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 350px;
}
.service_card > div >div {
    padding: 13px 28px 20px 15px;
}

/********* about cnt ********/
.grid-items{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 5px;
    max-height: 450px;
    width: 100%;
}
.grid-item{

    /* display: flex; */
    border-radius: 25px;
    overflow: hidden;
    /* background: #351d590e; */
    /* background: #eee3ff; */
    /* color: #4d2c82; */
    gap: 15px;
    height: 100%;
    font-weight: 300;
    /* border: solid 1px; */

}
.grid-item div {
    padding: 10px 5px;
    gap: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.2;
}
.grid-item span{
    font-size: 40px;
    font-weight: 600;
    /* color: #4d2c82; */
}
.grid-item p{
    margin: 0;
}
.grid-item img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}   
.item-1{
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 4;
    background-color: #2e75b726;
    color: rgb(46, 117, 183);
}
.item-2 {
    grid-column-start: 5;
    grid-column-end: 10;
    grid-row-start: 1;
    grid-row-end: 4;
}
.item-3 {
    grid-column-start: 10;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 5;
}
.item-4 {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 4;
    grid-row-end: 9;
}
.item-5 {
    grid-column-start: 6;
    grid-column-end: 10;
    grid-row-start: 4;
    grid-row-end: 9;
    background: var(--main-clr);
    color: white;
    line-height: 1.2;
}
.item-6 {
    grid-column-start: 10;
    grid-column-end: 13;
    grid-row-start: 5;
    grid-row-end: 9;
}
.item-7 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 9;
    grid-row-end: 13;
    background: var(--main-clr);
    color: white;
    line-height: 1.2;
}
.item-8 {
    grid-column-start: 4;
    grid-column-end: 9;
    grid-row-start: 9;
    grid-row-end: 13;
}
.item-9 {
    grid-column-start: 9;
    grid-column-end: 13;
    grid-row-start: 9;
    grid-row-end: 13;
}
.item-9 div{
    color: #42B548;
    background-color: #42b54826;
}


.about_cnt{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}
.sub_title{
    padding: 5px 10px;
    border-radius: 10px;
    border-radius: 10px;
    font-weight: 400;
    margin-right: auto;
}
.sub_title.grn{
    color: var(--main-clr);
    background-color: var(--main-light);
}
.sub_title.blu{
    color: var(--second-clr);
    background-color: var(--second-light)
}

.sec_title{
    font-weight: 500;
    font-size: 35px;
    line-height: 1;
    text-transform: capitalize;
}
.cta-btn{
    background-color: var(--main-clr);
    color: #ffff;
    border: solid 1px var(--main-clr);
    border-radius: 15px;
    padding: 10px 20px;
    transition: 0.5s;
    width: max-content;
}
.cta-btn:hover{
    background-color: #127517;
}
.sec-p{
    line-height: 1.3;
    font-weight: 400;
    color: #3d3d3d;
}

#vis-mis .container{
    padding: 17px;
    border-radius: 30px;
    background-color: var(--main-dark-1);
    color: white;
}

.vis-mis-img>img{
    max-height: 150px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    /* border-radius: 25px; */
    /* border: solid 1px #e9e9e9; */
}
.vis-mis-content>p{
    line-height: 1.3;
    font-weight: 300;
    color: #ffffffc7;
}
.vis-mis-content .point{
    margin: 0;
    padding: 0px 5px;
    border-right: solid 2px var(--main-clr);
    margin-bottom: 5px;
}
.vis-mis-content h2{
    color :var(--third-color) !important;
}
.vis-mis-desc{
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.points ul{
    font-weight: 200;
    line-height: 1.2;
}
.points ul li span{
    font-weight: 400;
}
.points ul li span svg{
    color: var(--main-clr);
}

.commitment_img img,
.team_img img{
    height: 300px;
    /* object-fit: cover; */
    /* height: 100%; */
    object-fit: cover;
    border-radius: 30px;
}
.team_img span {
    left: 15px;
    bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 15px;
    color: var(--second-clr);
}
.team_cnt {
    display: flex;
    flex-direction: column;
}

.commitment_cnt p b{
    color: var(--main-clr);
    font-weight: 600;
}

.commitment_cnt {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/*******footer******/

footer{
    background: var(--second-clr);
    color: white;
    padding-top: 40px ;
    padding-bottom: 10px;
}
footer a {
    color: white;
    display: inline-block;
}
.footer_logo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}
.footer_logo p{
    font-weight: 300;
    line-height: 1.3;
    color: #ffffffc7;
    margin-top: 10px;
    font-size: 14px;
    /* display: inline-block; */
}
.footer_cnt li{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    /* padding: 10px 0; */
}
.footer_cnt li a {
    padding: 3px 5px;
    border-radius: 10px;
    transition: 0.5s;
    width: 100%;
    font-weight: 200;
}
.footer_cnt li a:hover{
    background: rgba(255, 255, 255, 0.098);
}

.footer-2{
    border-top: solid 1px white;
    padding-top: 5px;
    margin-top: 20px;
}



/* *****************about page************** */

.banner-inner{
    min-height: 350px;
    width: 100%;
    display: grid;
    align-items: end ;
    justify-content: center;
}
.banner_inner-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    position: relative;
}
.banner-inner .overlay{
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to bottom,
        rgb(0 0 0 / 0%),
        rgba(0, 0, 0, 0.644)
    );    
    z-index: 0;
}

.inner-title-main {
    margin-top: 130px;
    color: white;
    font-weight: 500;
    width: 100%;
    font-size: 60px;
    text-transform: capitalize;
    z-index: 1;
    /* position: relative; */
    position: absolute;
    /* margin-top: 50px; */
    /* font-size: 64px; */
    color: #fff;
    font-weight: 600;
    left: 50%;
    top: 32%;
    transform: translate(-50%, -85%);
    text-align: center;
}
.inner-title-float {
    -webkit-text-stroke: 0.3px #ffffff82;
    font-size: 108px;
    color: transparent;
    font-weight: 700;
    /* opacity: 0.2; */
    text-align: center;
    width: max-content;
    z-index: 1;
    margin-bottom: 20px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}
.banner-inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner-inner.about{
    background-image: url('./img/banner.jpg');
}

.banner-inner-desc {
    padding: 30px;
    border-radius: 30px;
    max-width: 992px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    bottom: 20px;
    color: hsl(0deg 0% 0%);
    background-color: #ffffff;
    /* padding: 30px 30px; */
    text-align: center;
    /* font-size: 16px; */
    box-shadow: 4px 4px 40px 0px hsl(0deg 0% 0% / 15%);
}

.ach_img {
    padding: 5px 25px;
    font-size: 40px;
    background: var(--second-light);
    width: max-content;
    margin-bottom: 10px;
    border-radius: 15px;
    color: var(--second-clr);
}

/* ******achiev******** */
#achievements{
    padding: 40px 0;
    background-color:var(--main-light-2) ;
    /* color: white; */

}
.ach_cnt h3{
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
}
.ach_cnt p{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: hsla(0, 0%, 0%, 0.8);
}

/* *********services********* */

.service_card{
    padding: 20px;
    border-radius: 30px;
    background: var(--second-light-2);
    height: 100%;
}
.service_card-inner{
    padding: 20px;
    border-radius: 30px;
    background: white

}
.service_card h4{
    font-size: 20px;
    font-weight: 500;
}
.service_card p{
    /* font-size: 16px; */
    line-height: 1.5;
    font-weight: 400;
    color: hsla(0, 0%, 0%, 0.8);
}

.banner-inner.accounting{
    background: url('img/Accounting-sevi.jpg');
}
.banner-inner.financial{
        background: url('img/financial.png');
}
.banner-inner.taxation{
    background: url('img/tax.png');
}
.banner-inner.ESR{
    background: url('img/tax.png');
}
.banner-inner.corporate{
    background: url('img/building-1.png')
}
.banner-inner.HR{
    background: url('img/hr.jpg')
}
.banner-inner.software{
    background: url('img/software-1.png');
}
.banner-inner{
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.service_card li svg{
    margin-right: 10px;
    color: var(--main-clr) !important;
}

.service_card span {
    color: var(--second-clr);
    padding: 5px 15px;
    background: var(--second-light);
    border-radius: 10px;
    font-size: 25px;
    margin-bottom: 15px;
}


/* <---- Contact========= */

.contact-frm {
    padding-bottom: 60px;
    /* background: url(../images/about_bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conatct_space {
   text-align: left;
}

.getin_box {
    padding: 30px;
    background: #fff;
    border-radius: 20px 0px 0px 20px;
}

.getin_box h2 {
    font-size: 25px;
    color: var(--second-clr);
}

.getin_box .address {
    padding-left: 0%;
}

.getin_box .address i {
    font-size: 18px;
    margin-top: 4px;
}

.getin_box .address a {
    font-size: 16px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: all 0.3s;
}

.getin_box .address a:hover {
    color: var(--second-clr);
    transition: all 0.3s;
}

.getin_box .social_icons {
    margin-top: 0px;
    padding: 0%;
    display: flex;
    gap: 10px;
}

.getin_box .social_icons li a {
    list-style: none;
    float: left;
    font-size: 17px;
    height: 35px;
    width: 35px;
    background-color: var(--second-clr);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    border-radius: 30px;
}


.getin_box .social_icons li a:hover {
    margin-left: 0%;
    color: #ffff;
    background-color: #4AAE4C !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.getin_box .social_icons li i:hover {
    background-color: #333 !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.form_box {
    padding: 30px;
    border-radius: 0px 20px 20px 0px;
    background-color: rgba(233, 233, 233, 0.478);
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}

.form_box h2 {
    font-size: 25px;
    color: var(--second-clr);
    margin-bottom: 10px;
}

.form_box input,
.form_box textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 13px;
    border: 1px solid #0000003d;
    font-weight: 300;
}

.form_box input:focus-visible,
.form_box textarea:focus-visible {
    outline: 1px solid #000;
}

.form_box .main_btn2 {
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background-color: var(--second-clr);
    padding: 9px 20px;
    border: 1px solid var(--second-clr);
    border-radius: 13px;
    transition: all 0.3s ease 0s;
    text-align: center;
}

.plane_pic2 {
    transform: rotate(45deg) translateY(-2px);
    width: 17px;
    transition: all 0.2s ease 0s;
}

.form_box .main_btn2:hover {
    color: var(--second-clr);
    background-color: #fff;
    transition: all 0.3s ease 0s;
}

.form_box .main_btn2:hover .plane_pic2 {
    transform: rotate(45deg) translateY(-9px);
    transition: all 0.2s ease 0s;
}

/* <======== Thank-you========= */

.thanks_sec {
    /* background: url(../images/bg_design1.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 4px 7px 2px #00000010;
    padding: 60px 30px;
    border-radius: 30px;
}

.thanks_sec .love {
    text-align: center;
    font-size: 50px;
    color: #ED1B24;
    display: flex;
    justify-content: center;
    margin: auto;
}
.main_btn {
    padding: 10px;
    background: #f6f6f6;
    text-align: center;
    margin: 0;
    border-radius: 10px;
    border: none;
}
.thanks_sec .main_head {
    text-align: center;
    text-transform: capitalize;
    font-size: 50px;
}

.thanks_sec p {
    text-align: center;
    font-size: 20px !important;
}


iframe.g-map{
    padding: 10px;
    border-radius: 30px;
    margin-top: 30px !important;
}



label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #4cae4c;
}
.form_box{
    max-width: 750px;
    margin: auto;
}