html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 18px;
    color: var(--text-secondary);
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    line-height: 30px;
}
.btn:focus{
    box-shadow: none;
}

.light{
    font-weight: 300;
}
.bold{
    font-weight: 700;
}

:root {
  --text-secondary: #7F80A1;
  --main: #191A35;
  --white: #ffffff;
  --btn-hover: #272954;
  --secondary: #9495B1;
  --number-text: #ADABC3;
  --box-bg: #F9F9FF;
  --accordian-active: #E7E6F2;
  --social-bg: #F2F1FA;
  --testimonial-box: #FAFAFF;
  --review-position: #8D8BA7;
}

/*Header*/
.header{
    padding: 28px 35px;
    border-bottom: 0.5px solid var(--text-secondary);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
}
.sticky-bar {
    background-color: var(--white);
}
.logo{
    color: var(--main);
    font-size: 30px;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.3s ease-in-out;
    padding-left: 17px;
}
.logo:hover{
    color: var(--text-secondary);
}
.header .btn-theme{
    padding: 18px 24px;
    border-radius: 30px;
    background-color: var(--main);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.3s ease-in-out;
    border: 0px;
}

/*Hero Section*/
.hero-sec{
    padding: 100px 0px;
}
.hero-title{
    color: var(--main);
    font-size: 32px;
    font-weight: 700;
    line-height: 66px;
    margin-bottom: 20px;
}
.hero-text{
    color: var(--main);
    font-size: 24px;
    line-height: 66px;
    margin-bottom: 43px;
}
.btn-theme{
    padding: 23px 36px;
    border-radius: 40px;
    background-color: var(--main);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.3s ease-in-out;
    border: 0px;
}
.hero-sec .btn-theme{
    font-size: 32px;
}
.btn-theme:hover, :not(.btn-check)+.btn:active{
    background-color: var(--btn-hover);
    color: var(--white);
}

.sec-pad{
    padding: 70px 0px;
}
.title{
    color: var(--main);
    font-size: 45px;
    font-weight: 700;
    line-height: 76px;
    text-align: center;
}
.box001{
    border-radius: 24px;
    border: 1px solid var(--secondary);
    background: var(--white);
    padding: 48px 32px;
    width: 100%;
    height: 100%;
}
.number-text{
    color: var(--number-text);
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 66px;
    margin-bottom: 16px;
}
.sub-title{
    color: var(--main);
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
}
.box001 .sub-title{
    margin-bottom: 8px;
}
.box001 p:last-child{
    margin-bottom: 0px;
}
.icon-box1{
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background-color: var(--box-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.icon-box2{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--box-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 32px;
}

.profile-box{
    background-color: var(--box-bg);
    padding: 10px 10px 32px;
    border-radius: 10px;
}
.profile-box img{
    border-radius: 10px;
}
.profile-name{
    margin-top: 20px;
    text-align: center;
}
.cust-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.cust-ul li{
    font-size: 25px;
}

.accordion-item {
    border: 0px;
    padding: 46px 60px;
    background-color: var(--box-bg);
    border-radius: 24px !important;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding: 0px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding-right: 100px;
}
.accordion-button .title{
    color: var(--main);
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.accordion-body {
    background-color: transparent;
    border-bottom: 0px;
    padding: 0px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-right: 100px;
}
.accordion-button::after, 
.accordion-button:not(.collapsed)::after{
    display: none;
}
.accordion-item .faq-icon {
    min-width: 60px;
    height: 60px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 30px;
    right: 60px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}
.accordion-item .faq-icon svg{
    width: 30px;
    transition: all 0.5s ease-in-out;
}
.accordion-item.active {
    background-color: var(--accordian-active);
}
.accordion-item.active .faq-icon{
    background-color: var(--main);
}
.accordion-item.active .faq-icon svg{
    transform: rotate(45deg);
}
.accordion-item .faq-icon svg path{
    transition: all 0.5s ease-in-out;
}
.accordion-item.active .faq-icon svg path{
    fill: #ffffff;
}

.ft-36{
    color: var(--main);
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
}

.testimonial-box{
    border-radius: 20px;
    background-color: var(--testimonial-box);
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.testimonial-profile{
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.review-sec{
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
}
.review-sec p{
    color: var(--main);
}
.review-name{
    color: var(--main);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 12px;
}
.review-position{
    color: var(--review-position);
    font-size: 16px;
    line-height: 18px;
}
.owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}
.owl-theme .owl-dots .owl-dot span {
    margin: 0px !important;
    background-color: var(--secondary);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--main);
}

.footer{
    padding: 60px 0px;
    border-top: 0.5px solid var(--text-secondary);
    background: var(--white);
}
.f-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.f-right{
    display: flex;
    align-items: center;
    gap: 62px;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.f-link{
    transition: all 0.3s ease-in-out;
}
.f-link:hover{
    color: var(--main);
}
.social{
    display: flex;
    align-items: center;
    gap: 16px;
}
.social-btn{
    width: 36px;
    height: 36px;
    background-color: var(--social-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.social-btn:hover{
    background-color: var(--main);
}
.social-btn svg path{
    transition: all 0.3s ease-in-out;
}
.social-btn:hover svg path{
    fill: var(--white);
}
.ml-2{
    margin-left: 2px;
}