/* Fonts */
@import url("https://fonts.cdnfonts.com/css/satoshi");
@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');
/* End Fonts */

/* Common */
* {
    box-sizing: border-box;
}
:root{
    --blue: #5156CE;
    --lightBlue: #32C5FF;
    --white: #FFFFFF;
    --pink: #B620E0;
    --yellow: #F7B500;
    --black: #000000;
    --black18: #181818;
    --grey67: #475467;
    --grey33: #333333;

    --marquee-width: 100vw;
  --marquee-height: 20vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}
:focus-visible{
    outline: none;
}
body {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: var(--black);
    margin: 0;
}
a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s;
}
a:hover{
    transition: all 0.4s;
}
.f-36{
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}
.f-30{
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}
.container {
    max-width: 1330px;
    padding: 0 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
img{
    max-width: 100%;
    height: auto;
    display: block
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0 0 16px;
}
.blue-btn{
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 60px;
    padding: 10px 36px;
    transition: all 0.4s;
}
.blue-btn:hover{
    color: var(--black);
    transition: all 0.4s;
}
.gradient-btn{
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(253.18deg, var(--lightBlue) -11.62%, var(--pink) 55.05%, var(--yellow) 118.44%);
    border-radius: 60px;
    padding: 9px 36px;
    transition: all 0.4s;
}
.gradient-btn:hover{
    color: var(--black);
    transition: all 0.4s;
}
.gradient-font{
    background: linear-gradient(253.18deg, var(--lightBlue) -11.62%, var(--pink) 55.05%, var(--yellow) 118.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.pb-70{
    padding-bottom: 70px;
}
.site-content{
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}
/* End Common */

/* accordion */
.accordion-item{
    padding: 24px;
    border-bottom: 1px solid #00000033;
    cursor: pointer;
}
.accordion-item.active .accordion-title::before{
    transition: all 0.4s;
    transform: rotate(180deg);
}
.accordion-item .accordion-title{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--black18);
    margin: 0;
    padding-right: 24px;
    position: relative;
}
.accordion-item .accordion-title::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url('../images/icon-arrow.svg') no-repeat center;
    width: 17px;
    height: 10px;
    transition: all 0.4s;
}
.accordion-content{
    font-size: 16px;
    line-height: 1.4;
    color: #707070;
    margin: 12px 0 0;
}
.accordion-content p{
    margin: 0 0 16px;
}
.accordion-content p:last-child{
    margin: 0;
}
/* End accordion */

/* Header */
.site-header{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 40px 0;
    z-index: 2;
}
.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-inner .logo{
    max-width: 168px;
}
.bannerImage{
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}
.banner-image1{
    max-width: 755px;
    left: 0;
}
.banner-image2{
    top: -55px;
    max-width: 578px;
    right: -300px;
}
.banner-image3{
    max-width: 1012px;
    right: 0;
}
/* End Header */

/* Banner */
.hero-banner{
    text-align: center;
}
.hero-banner .title{
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--black);
    max-width: 916px;
    margin: 0 auto 20px;
}
.hero-banner p{
    font-size: 20px;
    line-height: 1.5;
    max-width: 700px;
    color: rgb(0 0 0 / 50%);
    margin: 0 auto 30px;
}
/* End Banner */

/* Efficiency Redefined */
.efficiency-redefined{
    text-align: center;
}
.efficiency-redefined-inner{
    display: flex;
    align-items: stretch;
    row-gap: 24px;
    margin: 60px -12px 0;
}
.effiRed-card{
    width: 33.3333%;
    padding: 0 12px;
}
.effiRed-card img{
    width: 135px;
    height: 144px;
    margin: 0 auto;
}
.effiRed-card  .title{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black18); 
    max-width: 400px;  
    margin: 0 auto 16px;
}
.effiRed-card  p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey67);
    max-width: 400px;
    margin: 0 auto;
}
/* End Efficiency Redefined */

/* Programs & design partners */
.programs-design{
    text-align: center;
}
.programs-design .title{
    margin-bottom: 48px;
}

.logo-list {
    overflow: hidden;
    width: 100%;
}
.marquee-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-bottom: 30px;
}
.marquee-wrapper:last-child{
    margin: 0;
}
/* End Programs & design partners */

/* Potential Application */
.potential-application{
    position: relative;
    background: #E8E8F699;
}
.potential-application::before{
    content: '';
    position: absolute;
    top: -38px;
    right: 0;
    background: url('../images/site-bg-line.svg') no-repeat center;
    max-width: 1440px;
    width: 100%;
    height: 707px;
    z-index: 1;
}
.poteApp-inner{
    display: flex;
    align-items: stretch;
    gap: 24px;
    position: relative;
    z-index: 2;
}
.poteApp-content{
    display: flex;
    align-items: center;
    width: 60%;
}
.poteApp-image{
    position: relative;
    width: 40%;
    min-height: 390px;
}
.poteApp-content .inner-content{
    max-width: 630px;
}
.poteApp-content .title{
    max-width: 610px;
    margin-bottom: 24px;
}
.poteApp-content p{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--grey67);
}
.poteApp-content p b{
    font-weight: 700;
}
.poteApp-image .poteApp-img1,
.poteApp-image .poteApp-img2{
    position: absolute;
    box-shadow: 8px 16px 12px 0px #00000014;
    border-radius: 10px;
}
.poteApp-image .poteApp-img1{
    top: 0;
    right: 0;
}
.poteApp-image .poteApp-img2{
    left: 0;
    bottom: 0;
}
/* End Potential Application */

/* HR department */
.hr-department{
    position: relative;
    background: #EC67AB1F;
    text-align: center;
}
.hr-department::before{
    content: '';
    position: absolute;
    top: -54px;
    left: 0;
    background: url('../images/site-bg-line2.svg') no-repeat center;
    max-width: 1440px;
    width: 100%;
    height: 820px;
    z-index: 1;
}
.hrDepartment-inner{
    position: relative;
    z-index: 2;
}
.hrDepartment-inner .title{
    max-width: 637px;
    color: var(--grey33);
    margin: 0 auto 16px;
}
.hrDepartment-slider{
    max-width: 640px;
    margin: 0 auto;
}
.hrDepartment-slider.slick-dotted{
    margin: 0 auto;
}
.hrDepartment-slider .slick-arrow{
    display: none;
}
.hrDepartment-item{
    text-align: center;
}
.hrDepartment-item .description{
    font-size: 24px;
    line-height: 1.6;
    color: var(--black);
    max-width: 637px;
    margin: 0 auto 32px;
}
.hrDepartment-item .details{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    gap: 20px;
    min-width: 342px;
    margin: 0 auto;
}
.hrDepartment-item .details img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    flex-shrink: 0;
}
.hrDepartment-item .details .name,
.hrDepartment-item .details .designation{
    font-size: 24px;
    line-height: 1.2;
}
.hrDepartment-item .details .name{
    color: var(--black);
    font-weight: 600;
    margin-bottom: 8px;
}
.hrDepartment-item .details .designation{
    color: #707070;
    font-weight: 400;
    margin: 0;
}
.hrDepartment-slider .slick-dots{
    position: static;
    margin-top: 30px;
}
.hrDepartment-slider .slick-dots button{
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background-color: #D9D9D9;
}
.hrDepartment-slider .slick-dots .slick-active button{
    background-color: var(--blue);
}
.hrDepartment-slider .slick-dots button::before{
    display: none;
}
/* End HR department */

/* AI powered */
.ai-powered{
    position: relative;
    background-color: #E8E8F699;
}
.ai-powered::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: -294px;
    background: url('../images/site-bg-line3.svg') no-repeat center;
    max-width: 890px;
    width: 100%;
    height: 662px;
    z-index: -1;
}
.aiPowered-inner{
    display: flex;
    align-items: stretch;
    gap: 24px;
    position: relative;
    z-index: 2;
}
.aiPowered-image,
.aiPowered-content{
    width: 50%;
}
.aiPowered-content{
    width: 50%;
}
.aiPowered-image{
    display: flex;
    align-items: center;
}
.aiPowered-image-inner{
    max-width: 578px;
    width: 100%;
}
.aiPowered-image-inner img{
    width: 100%;
    margin-bottom: 10px;
}
.aiPowered-image-inner img:last-child{
    margin: 0;
    box-shadow: 0px 4px 17px 0px #5156CE33;
}
.aiPowered-content-inner{
    max-width: 552px;
    margin-left: auto;
}   
.aiPowered-content-inner .title{
    color: #333333;
    margin-bottom: 16px;
}
/* End AI powered */

/* Why Us */
.whyUs-inner{
    display: flex;
    align-items: end;
}
.whyUs-left{
    width: 55%;
}
.whyUs-tight{
    width: 45%;
}
.whyUs-card{
    max-width: 437px;
    padding: 24px 32px;
    background-color: #F9FAFB;
    box-shadow: 0px 4px 4px 0px #0000001A;
    border-radius: 12px;
    margin-left: auto;
    text-align: center;
}
.whyUs-card .title{
    font-size: 20px;
    line-height: 1.72;
    font-weight: 700;
    color: #344054;
    margin: 0 0 38px;
}
/* End Why Us */

/* Follow Us  */
.follow-us .title{
    margin-bottom: 32px;
}
.social-btn{
    display: inline-block;
}
.social-btn path,
.social-btn:hover path{
    transition: all 0.3s;
}
.social-btn:hover path{
    fill: var(--blue);
}
/* End Follow Us  */