.hero-section {
    background: linear-gradient(360deg, #0575E6 0%, #021B79 100%);

    padding: 142px 0;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    opacity: .2;
    height: 100%;
    background: url(../images/hero-left-bg.png) no-repeat center right/cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    opacity: .3;
    height: 100%;
    background: url(../images/hero-right-bg.png) no-repeat center left/cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .hero-img {
    max-width: 476px;
    max-height: 525px;
    width: 100%;
    display: block;
    margin: auto;
}

.hero-section h1 {
    margin-bottom: 24px;
    font-size: 58px;
    color: #ffffff;
    font-weight: 700;
    max-width: 633px;
}

.hero-section p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 58px;
    max-width: 580px;
}

.hero-btns{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-section .logo,
.hero-section .logo {
    max-height: 58px;
    margin-bottom: 18px;
}

.btn-primary {
    color: #ffffff;
    background: #0575E6;
    border: 2px solid #0575E6;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}


.btn-primary:hover{
    color: #0575E6 !important;
    background: #ffffff !important;
    border-color: #0575E6 !important;
}

.btn-white {
    color: #0575E6;
    background: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.btn-white:hover{
    color: #ffffff !important;
    background: #0575E6 !important;
    border-color: #ffffff !important;
}

.btn-outline-primary {
    color: #0575E6;
    background: #ffffff;
    border: 2px solid #0575E6;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}


.btn-outline-primary:hover{
    color: #ffffff !important;
    background: #0575E6 !important;
    border-color: #0575E6 !important;
}

.btn-outline-white {
    color: #ffffff;
    background: #0575E6;
    border: 2px solid #ffffff;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.btn-outline-white:hover{
    color: #0575E6 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

.easy-fast-section{
    padding: 120px 0;
    text-align: center;
}

.sub-title,
.easy-fast-section h5{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: #0575E6;
    margin-bottom: 14px;
    text-align: center;
}

.title{
    max-width: 782px;
    margin: 0 auto 48px;
    font-size: 40px;
    font-weight: 700;
    line-height: 160%;
    text-align: center;
    color: #04182c;
}

.title-line{
    position: relative;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.title-line::after{
    content: '';
    height: 1px;
    background: linear-gradient(90deg, rgba(5, 117, 230, 0) 0%, #0575E6 50%, rgba(5, 117, 230, 0) 100%);
    width: 420px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
    z-index: -1;
    transform: translateX(calc(-50% + 21px));
    opacity: .5;
}

.title-line img{
    width: 52px;
    background-color: #ffffff;
    padding: 0 12px;
}

.easy-fast-section p{
    color: #04182c;
}

.easy-fast-section .icon{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: rgba(20, 117, 214, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.easy-fast-section .icon img{
    width: 52px;
    height: 52px;
}

.benefits-section{
    background:rgb(5 117 230 / 4%);  
}

.benefits-section .title-line img{
    background: #f5fafe;
}

.benefits-section .container{
    padding: 120px 12px;
}

.benefit{
    padding: 24px;
    background: #ffffff;
    border-radius: 24px;
    height: 100%;
}

.benefit-img{
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 24px;
    border-radius: 14px;
    object-fit: cover;
}

.benefit h5{
    color: #04182c;
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
}

.benefit ul{
    padding-left: 28px;
}

.benefit ul li{
list-style: none;
position: relative;
margin: 12px 0;
}

.benefit ul li:last-child{
    margin-bottom: 0;
}

.benefit ul li::before{
    content: '';
    position: absolute;
    top: 0;
    left: -28px;
    width: 24px;
    height: 24px;
    background: url(../images/icons/check-icon.svg) no-repeat center/cover;
    border-radius: 100%;
}

.quick-section{
    padding: 120px 0;
}

.quick-right-content{
    position: sticky;
    top: 42px;
}

.quick-card{
    border-radius: 24px;
    padding: 4px;
    background: rgb(5 117 230 / 10%);
    text-align: center;
}

.quick-card img{
    margin: 42px auto;
    max-height: 325px;
    max-width: 452px;
    width: 100%;
    aspect-ratio: 452/325;
    object-fit: contain;
}

.quick-card h5{
    padding: 24px;
    background: #ffffff;
    margin: 0;
    border-radius: 0 0 22px 22px;
}

.standing-section{
    background: linear-gradient(270deg, #0575E6 0%, #021B79 100%);
}

.standing-section .title{
    color: #ffffff;
}

.standing-section .container{
    padding: 120px 12px;
}

.standing-card{
    background: rgb(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 12px 12px;
    border-radius: 14px;
    height: 100%;
}
.standing-card .card-img{
    max-width: 120px;
    margin: 24px auto; 
}

.standing-card .card-img img{
    width: 100%;
    height: 100%;
}

.standing-card p{
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

.faq-section{
    padding: 120px 0;
}

.faq-section .accordion-item{
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-section .accordion-button{
    border: none !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    background-color: transparent !important;
    font-weight: 500;
    color: #04182c;
    font-size: 18px;
    gap: 12px;
}


.faq-section .accordion-button:not(.collapsed) {
    color: #0575E6 !important;
}

.faq-section P{
    padding: 0 20px 20px;
    margin: 0;
    color: #04182c;
}

.business-section {
    background: rgb(5 117 230 / 10%);
}

.business-section h3{
    font-size: 28px;
}

.business-section .container{
    padding: 42px 12PX;
}

.footer-section{
    padding: 82px 0 24px;
    background: #010308;
}

.social-links{
    display: flex;
    gap: 8px;
    padding: 0;
}

.social-links img{
    width: 42px;
    height: 42px;
    transition: all .3s ease;
}

.social-links img:hover{
    transform: translateY(-4px);
}

.footer-links{
    padding: 0;
}

.footer-links li{
    list-style: none    ;
}

.footer-links a{
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 18px;
    display: block;
    transition: all .3s ease;
}

.footer-links a:hover{
    color: #0575E6;
}

.footer-rights{
    color: #ffffffc4;
    font-size: 14px;
    text-align: center;
    margin: 82px 0 0;
    padding-top: 24px;
    border-top: 1px solid #ffffff14;
}

.testimonialSwiper .swiper-slide{
    height: unset;
}

.customer-card{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.customer-card .stars{
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.customer-card .user-review{
    color: #04182c;
    padding: 0;
    margin-bottom: 14px;
    height: 100%;
}

.customer-card .customer-detail{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 24px;
}

.customer-card .customer-detail img{
    width: 62px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    object-fit: cover;
}

.customer-card .customer-detail h5{
    color: #04182c;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 18px;
}

.customer-card .customer-detail p{
    padding: 0;
    color: #636571;
    display: block;
    font-weight: 400;
    font-size: 14px;
}

.swiper-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 42px;
    margin-top: 24px;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev{
    position: unset;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.testimonialSwiper .swiper-button-prev:after, 
.testimonialSwiper .swiper-button-next:after{
    color: #04182c;
    font-size: 18px;
}