 .stats-section::after {
     content: "";
     width: 318px;
     height: 233px;
     position: absolute;
     bottom: 43px;
     left: -50px;
     background: url('/wp-content/uploads/2026/07/stats-shape.webp');
     background-repeat: no-repeat;
     background-size: contain;
     background-position: center;
     animation:
         floatRotate 10s ease-in-out infinite,
         glowPulse 4s ease-in-out infinite;
     z-index: -1;

 }

 @keyframes floatRotate {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(7deg);
     }
 }

 @keyframes glowPulse {

     0%,
     100% {
         filter: drop-shadow(0 0 0 rgba(207, 216, 241, .3));
     }

     50% {
         filter: drop-shadow(0 0 25px rgba(207, 216, 241, .6));
     }
 }

 .stats-section::before {
     content: "";
     width: 90px;
     height: 80px;
     position: absolute;
     bottom: 30px;
     right: 21%;
     background: url('/wp-content/uploads/2026/07/stats-shape-2.webp') no-repeat;
     background-size: contain;
     animation: breathe 3s ease-in-out infinite;
     z-index: -1;
 }

 @keyframes breathe {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.15);
     }
 }

 .stats-section .shape-3 {
     width: 160px;
     height: 386px;
     bottom: 150px;
     right: 0;
     background: url('/wp-content/uploads/2026/07/stats-shape-3.webp');
     background-size: contain;
     background-position: right;
     transform-origin: right center;
     animation: pageFlip 5s ease-in-out infinite;

 }

 @keyframes pageFlip {

     0%,
     100% {
         transform:
             perspective(1200px) rotateY(0deg);
     }

     50% {
         transform:
             perspective(1200px) rotateY(-35deg);
     }
 }

 .stats-section .stat-card {
     position: relative;
     padding: 18px 5px 18px 28px;
     border-radius: 24px;
     overflow: hidden;
     transition: all .5s ease;
     box-shadow: 10px 14px 34px 0px rgba(0, 0, 0, .08);
     height: 100%;
 }

 .stats-section .card-1 {
     background: #DFEAE7;
 }

 .stats-section .card-2 {
     background: #e6ebfb;
 }

 .stats-section .card-3 {
     background: #FEF2E5;
 }

 .stats-section .card-4 {
     background: #F5EFF5;
 }

 .stats-section .stat-card .num {
     font-size: 44px;
     font-weight: var(--fw-700);
     margin-bottom: 4px;
     color: #000;
     transition: .5s;
 }

 .stats-section .stat-card p {
     margin: 0;
     font-size: var(--fs-md);
     transition: .4s;
 }

 /* Top Accent Line */
 .stats-section .card-accent {
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 5px;
     background: linear-gradient(90deg,
             #0d6efd,
             #20c997);
     transition: .5s;
 }

 /* Gradient Border */
 .stats-section .stat-card::before {
     content: "";
     position: absolute;
     inset: 0;
     border-radius: 24px;
     padding: 2px;
     background: linear-gradient(135deg,
             #0d6efd,
             #20c997,
             #ffc107);

     -webkit-mask:
         linear-gradient(var(--WhiteColor) 0 0) content-box,
         linear-gradient(var(--WhiteColor) 0 0);

     -webkit-mask-composite: xor;
     opacity: 0;
     transition: .5s;
 }



 @media(min-width:1200.98px) {

     /* Hover */
     .stats-section .stat-card:hover {
         transform:
             perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-12px);

         box-shadow:
             0 25px 60px rgba(0, 0, 0, .15);

     }

     .stats-section .stat-card:hover::before {
         opacity: 1;
     }

     .stats-section .stat-card:hover .card-accent {
         width: 100%;
     }

     .stats-section .stat-card:hover .num,
     .stats-section .stat-card:hover p {
         transform: translateX(8px);
     }
 }

 @media(max-width:1399.98px) {
     .stats-section .stat-card .num {
         font-size: 38px;
     }

     .stats-section::after {
         width: 270px;
         height: 180px;
     }

     .stats-section::before {
         bottom: 10px;
     }

     .stats-section .shape-3 {
         bottom: 100px;
         width: 130px;
         height: 317px;
     }
 }

 @media(max-width:1199.98px) {
     .stats-section::before {
         bottom: 0px;
     }

     .stats-section .shape-3 {
         bottom: 80px;
     }
 }

 @media(max-width:991.98px) {

     .stats-section .stat-card .num {
         font-size: 42px;
     }

     .stats-section .stat-card p {
         font-size: 16px;
     }
 }

 @media(max-width:767.98px) {
     .stats-section .shape-3 {
         width: 82px;
         height: 200px;
         bottom: 200px;

     }

     .stats-section::after {
         width: 200px;
         height: 110px;
         bottom: 6px;
     }

     .stats-section::before {
         height: 60px;
         width: 60px;
     }

     .stats-section .stat-card .num {
         font-size: 24px;
     }

     .stats-section .stat-card {
         padding: 15px 10px 15px 10px;
         border-radius: 12px;
         box-shadow: none;
     }

 }


 .deal-section {
     position: relative;
     overflow: hidden;
 }

 .deal-section .main-title {
     position: relative;
     display: inline-block;
 }

 .deal-section .main-title::after {
     content: "";
     width: 36px;
     height: 36px;
     position: absolute;
     top: -24px;
     left: -16px;
     z-index: -1;
     background: url(../images/title-shape.svg);
     background-size: contain;
     background-repeat: no-repeat;
 }

 .deal-section .text {
     font-size: var(--fs-md);
     margin-top: 18px;
 }

 .deal-section::before {
     content: '';
     position: absolute;
     top: 52px;
     right: -80px;
     width: 260px;
     height: 150px;
     background: var(--TertiaryColor);
     border-radius: 80px 0 0 80px;
     /* transform:rotate(35deg); */
     z-index: -1;
     animation: morphWave 7s ease-in-out infinite;
 }



 .deal-section::after {
     content: '';
     position: absolute;
     top: 69px;
     left: 80px;
     width: 54px;
     height: 74px;
     background: url('/wp-content/uploads/2026/07/deal-shape.webp');
     background-size: contain;
     background-repeat: no-repeat;
     animation: breathe 3s ease-in-out infinite;
     z-index: -1;

 }

 .deal-section .item {
     display: flex;
     gap: 15px;
     align-items: center;
     height: 100%;
     border-radius: 20px;
     padding: 35px 20px;
     overflow: visible;
     transition: .5s ease;
     cursor: pointer;
     box-shadow: 10px 14px 34px 0px rgba(var(--BlackColorRGBA), 0.1);

 }

 .deal-section .item .icon-box {
     border-radius: 20px 20px 0 0;
     transition: .5s ease;
     flex-shrink: 0;
 }

 .deal-section .item .icon-box img {
     width: 44px;
     height: 36px;
     object-fit: contain;
 }

 /* title */
 .deal-section .item .box-title {
     font-size: var(--fs-md);
     font-weight: 700;
     color: var(--BlackColor);
     margin: 0;
 }

 .deal-section .item:hover {
     transform: translateY(-10px);
 }

 /* .deal-section .item:hover .icon-box {
    transform: translateY(-10px) rotate(-8deg);
} */

 .deal-section .item-col:nth-child(1) .item {
     background: #DFEAE7;
 }

 .deal-section .item-col:nth-child(1) .item .icon-box {
     background: #DFEAE7;
 }

 .deal-section .item-col:nth-child(2) .item {
     background: #EDF2FF;
 }

 .deal-section .item-col:nth-child(2) .item .icon-box {
     background: #EDF2FF;
 }

 .deal-section .item-col:nth-child(3) .item {
     background: #FEF2E5;
 }

 .deal-section .item-col:nth-child(3) .item .icon-box {
     background: #FEF2E5;
 }

 .deal-section .item-col:nth-child(4) .item {
     background: #F5EFF5;
 }

 .deal-section .item-col:nth-child(4) .item .icon-box {
     background: #F5EFF5;
 }

 .deal-section .b-title {
     font-size: 54px;
     font-weight: var(--fw-700);
 }

 .deal-section .b-title span {
     display: inline-block;
     color: var(--TertiaryColor);
     position: relative;
 }

 .deal-section .b-title span::after {
     content: "";
     position: absolute;
     width: 100%;
     top: 93%;
     left: 0;
     height: 11px;
     background: url(../images/line.svg);
     background-repeat: no-repeat;
     background-size: 100% 100%;
 }

 .deal-section .b-title span::before {
     content: "";
     position: absolute;
     width: 38px;
     bottom: 75%;
     right: -3px;
     height: 38px;
     background: url(../images/trusted-shape.svg);
     background-repeat: no-repeat;
     background-size: 100% 100%;
 }

 @media(max-width:1199px) {
     .deal-section .b-title {
         font-size: var(--fs-h1);
     }
 }

 @media(max-width:991px) {
     .deal-section .item-col {
         margin-top: 30px;
     }

 }

 @media(max-width:767px) {
     .deal-section .b-title span::before {
         height: 30px;
         width: 30px;
     }

     .deal-section::after {
         height: 50px;
         width: 50px;
         top: 5px;
         left: 5px;
     }

     .deal-section::before {
         width: 150px;
         height: 70px;

     }

     .deal-section .b-title {
         font-size: var(--fs-h3);
     }

     .deal-section .item {
         padding: 15px 6px;
         gap: 5px;
         border-radius: 10px;
     }

     .deal-section .item .icon-box img {
         width: 35px;
         height: 30px;
     }

     .deal-section .item .box-title {
         font-size: 12px;
     }

     .deal-section .item-col {
         margin-top: 18px;
     }

     .deal-section .item {
         box-shadow: none;
     }
 }


 .trouble-section {
     background: linear-gradient(90.62deg, rgba(198, 226, 94, 0.2) 0%, rgba(228, 220, 50, 0.2) 100%);
     overflow: hidden;
 }

 .trouble-section .section-heading {
     margin-bottom: 50px;
 }

 .trouble-section .section-heading .text {
     font-size: var(--fs-md);
     margin-top: 15px;
 }

 .trouble-section .trouble-card {
     display: flex;
     align-items: center;
     background: var(--WhiteColor);
     border-radius: 20px;
     min-height: 142px;
     box-shadow: 10px 14px 34px 0px rgba(var(--BlackColorRGBA), .1);
     transition: .4s;
     padding: 15px;
     gap: 10px;
 }

 .trouble-section .card-img {
     width: 120px;
     background: var(--WhiteColor);
     border-radius: 20px 20px 0 0;
 }

 .trouble-section .card-img img {
     width: 100px;
     transition: .5s;
 }



 .trouble-section .card-content .text {
     margin: 0;
     font-size: 15px;
     line-height: 24px;
 }


 .trouble-section .trouble-card:hover .card-img img {
     transform: scale(1.08) translateY(-5px);
 }


 .trouble-section .swiper-pagination {
     position: relative;
     margin-top: 60px;
 }

 .trouble-section .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     background: #D9D9D9;
     border: 1px solid var(--PrimaryColor);
     opacity: 1;
 }

 .trouble-section .swiper-pagination-bullet-active {
     background: var(--PrimaryColor);
 }

 @media(max-width:1199px) {
     .trouble-section .trouble-section {
         padding: 60px 0;
     }
 }

 @media(max-width:767px) {

     .trouble-section .trouble-section {
         padding: 50px 0;
     }

     .trouble-section .section-heading {
         margin-bottom: 30px;
     }

     .trouble-section .swiper-pagination {
         margin-top: 35px;
     }

     .trouble-section .swiper-pagination-bullet {
         width: 15px;
         height: 15px;
         margin: 0 6px !important;
     }

 }

 .why-choose-us {
     position: relative;
     overflow: hidden;
     padding: 100px 0;
     background-size: cover !important;
     background-position: top center !important;
 }

 .why-choose-us::after {
     content: "";
     position: absolute;
     bottom: 0;
     right: 0;
     height: 367px;
     width: 400px;
     background: url('/wp-content/uploads/2026/07/choose-us-shape.webp');
     background-repeat: no-repeat;
     background-size: contain;
     background-position: bottom right;
     pointer-events: none;
     transform-origin: right bottom;
     animation: doorOpen 4s ease-in-out infinite;
 }

 @keyframes doorOpen {

     0%,
     100% {
         transform: perspective(1200px) rotateY(0deg);
     }

     50% {
         transform: perspective(1200px) rotateY(-15deg);
     }
 }

 /* Dark Overlay */

 .why-choose-us .overlay {
     position: absolute;
     inset: 0;
     background: rgba(var(--WhiteColorRGBA), .8);

 }


 .why-choose-us .main-title {
     margin-bottom: 76px;
     color: var(--BlackColor);
 }

 .why-choose-us .feature-box {
     position: relative;
     z-index: 2;
     transition: .4s;
     gap: 20px;
 }

 .why-choose-us .icon {
     height: 100px;
     width: 100px;
     border-radius: 50%;
     background: #EDF2FF;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 0 #1C5F98;
 }

 .why-choose-us .icon img {
     height: 44px;
     width: 44px;
     object-fit: contain;
 }

 .why-choose-us .content {
     width: calc(100% - 120px);
 }

 .why-choose-us .feature-box .title {
     font-size: var(--fs-h5);
     color: var(--BlackColor);
     font-weight: var(--fw-700);
 }

 .why-choose-us .feature-box .text {
     margin-top: 12px;
     line-height: 24px;
 }

 @media(max-width:1399px) {
     .why-choose-us .icon {
         height: 80px;
         width: 80px;
     }

     .why-choose-us .content {
         width: calc(100% - 100px);
     }

 }

 @media(max-width:1199px) {
     .why-choose-us {
         padding: 80px 0;
     }
 }

 @media(max-width:767px) {
     .why-choose-us .main-title {
         margin-bottom: 30px;
     }

     .why-choose-us {
         padding: 60px 0;
     }

     .why-choose-us::after {
         width: 100%;
         height: 150px;
     }

     .why-choose-us .icon {
         height: 35px;
         width: 35px;
         flex-shrink: 0;
     }

     .why-choose-us .content {
         width: calc(100% - 55px);
     }

     .why-choose-us .icon img {
         height: 18px;
         width: 18px;
     }

     .why-choose-us .feature-box {
         gap: 10px;
         margin-top: 5px;
     }

     .why-choose-us .feature-box .text {
         margin-top: 5px;
     }

     .hero-section .hero-image-wrapper .img-wrap::after {
         background: none;
     }
 }

 @media(max-width:575px) {


     .why-choose-us .feature-box .title {
         font-size: var(--fs-h6);
     }
 }


 /* service-section-start */

 .services-section {
     background-color: #EDF2FF;
     overflow: hidden;
     background-image: url(../images/service-bg.png);
     background-repeat: no-repeat;
     background-position: left bottom;
     background-blend-mode: luminosity;
 }

 .services-section .services-desc {
     max-width: 836px;
     margin: 0 auto;
 }

 .services-section .service-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     width: 77px;
     height: 77px;
     border-radius: 50%;
     margin-bottom: 0px;
 }


 .services-section .service-text h6 {
     color: var(--BodyColor);
     font-weight: var(--fw-700);
     margin-bottom: 5px;
     transition: all 0.5s ease;
     margin-top: 10px;
 }

 .services-section .services-col a {
     background: #DEE8FF;
     position: relative;
     display: block;
     border-radius: 16px;
     padding: 30px;
     border-top: 4px solid var(--PrimaryColor);
     overflow: hidden;
     transition: all 0.5s ease;
     height: 100%;
 }

 .services-section .services-col a::after {
     content: "";
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     bottom: 100%;
     background: var(--PrimaryColor);
     transition: all 0.5s ease;
 }

 .services-section .services-col a p {
     transition: all 0.5s ease;
 }

 @media(min-width:1200px) {
     .services-section .services-col a:hover {
         transform: translatey(-10px);
     }

     .services-section .services-col a:hover h6 {
         color: var(--WhiteColor);
     }

     .services-section .services-col a:hover p {
         color: var(--WhiteColor);
     }

     .services-section .services-col a:hover::after {
         bottom: 0;
     }
 }

 .services-section .service-box {
     gap: 10px;
     position: relative;
     z-index: 2;
 }

 .services-section .arrow-icon {
     border: 1px solid var(--BodyColor);
     border-radius: 50%;
     width: 22px;
     height: 22px;
     display: flex;
     align-items: center;
     margin-left: auto;
     justify-content: center;
     margin-top: 20px;
     transition: all 0.3s ease;
     position: relative;
     z-index: 2;
 }

 .services-section .service-para {
     position: relative;
     z-index: 2;
 }

 .services-section .arrow-icon i {
     margin-top: -1px;
     transition: all 0.3s ease;
 }

 .service-main:hover .arrow-icon {
     background-color: var(--TertiaryColor);
     border-color: var(--TertiaryColor);
 }

 .service-main:hover .arrow-icon i svg path {
     stroke: var(--WhiteColor);
 }

 @media(max-width:991.98px) {
     .services-section .services-col {
         margin-top: 20px;
     }
 }

 @media(max-width:767.98px) {
     .services-section .services-col a {
         padding: 15px;
     }

     .services-section .service-text h6 {
         font-size: 15px;
     }

     .services-section .service-icon {
         width: 60px;
         height: 60px;
         padding: 0px;
     }
 }



 /* process-section start  */

 .process-section {
     background: rgba(237, 242, 255, 1);
 }

 .process-section .our-process-row {
     margin-bottom: 0;
     position: relative;
 }

 .process-section .our-process {
     position: relative;
     display: flex;
     margin-left: 15%;
     width: 74%;
 }

 .process-section .our-process-l {
     padding-right: 10px;
 }

 .process-section .our-process-l span {
     background: #DFEAE7;
     width: 65px;
     height: 65px;
     border-radius: 70px;
     display: block;
     text-align: center;
     line-height: 65px;
     font-size: 34px;
     font-weight: 500;
 }

 .process-section .our-process-r em {
     display: block;
     max-width: 200px;
     padding-bottom: 5px;
     text-align: center;
 }

 .process-section .our-process-r h4 {
     font-size: 24px;
     font-weight: 600;
 }


 .process-section .our-process-main:nth-child(2n+2) {
     margin-top: 50px;
     margin-left: 0;
 }

 .process-section .our-process-main:nth-child(2n+3) {
     margin-top: 40px;
 }

 .process-section .our-process-main:nth-child(2n+4) {
     margin-top: 140px;
 }

 .process-section .our-process-main:nth-child(2n+1) .our-process-l span {
     background: #DFEAE7;
 }

 .process-section .our-process-main:nth-child(2n+2) .our-process-l span {
     background: #a9d7ca;
 }

 .process-section .our-process-main:nth-child(2n+3) .our-process-l span {
     background: #FEF2E5;
 }

 .process-section .our-process-main:nth-child(2n+4) .our-process-l span {
     background: #F5EFF5;
 }

 .process-section .our-process-main:nth-child(2n+1) .our-process-r .img-1 {
     position: absolute;
     right: -170px;
     top: 50px;
     animation: arrowMove 4s ease-in-out infinite;
     transform-origin: center;
 }

 .process-section .our-process-main:nth-child(2n+3) .our-process-r .img-1 {
     position: absolute;
     right: -100px;
     top: -110px;
     animation: arrowMove 4s ease-in-out infinite;
     transform-origin: center;
 }

 .process-section .our-process-main:nth-child(2n+4) .our-process-r .img-1 {
     position: absolute;
     left: -190px;
     top: 50px;
     animation: arrowMove 4s ease-in-out infinite;
     transform-origin: center;
 }



 @keyframes arrowMove {
     0% {
         transform: scale(1) rotate(-3deg);
         opacity: .7;
     }

     50% {
         transform: scale(1.05) rotate(3deg);
         opacity: 1;
     }

     100% {
         transform: scale(1) rotate(-3deg);
         opacity: .7;
     }
 }

 .process-section .our-process-row em {
     display: block;
     text-align: center;
     width: 250px;
 }

 .process-section .our-process-l {
     padding-right: 25px;
 }

 .process-section .our-process-r h4 {
     font-weight: 700;
     font-size: 20px;
     padding-top: 5px;
 }

 .process-section .our-process-r p {
     font-size: 14px;
     line-height: 24px;
     margin-top: 15px;
 }

 .process-section .title-row {
     padding-bottom: 50px;
     display: flex;
     gap: 90px;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .process-section .title-shape {
     width: 75px;
     animation: breathe 3s ease-in-out infinite;
     position: absolute;
     right: 25%;
 }

 .process-section .our-process-row::after {
     content: '';
     position: absolute;
     top: 50%;
     right: 5%;
     background: url('/wp-content/uploads/2026/07/process-icon1.webp');
     background-repeat: no-repeat;
     background-size: contain;
     animation: breathe 3s ease-in-out infinite;
     display: block;
     width: 60px;
     height: 60px;
 }

 .process-section .our-process-row::before {
     content: '';
     position: absolute;
     bottom: -25px;
     left: 25%;
     background: url('/wp-content/uploads/2026/07/process-icon2.webp');
     background-repeat: no-repeat;
     background-size: contain;
     animation: breathe 3s ease-in-out infinite;
     display: block;
     width: 50px;
     height: 50px;
 }

 .process-section .shape-3 {
     width: 160px;
     height: 386px;
     top: 200px;
     left: 0;
     background: url('/wp-content/uploads/2026/07/bg-prop-1-left.webp');
     background-size: contain;
     background-position: left;
     transform-origin: left center;
     animation: pageFlip 5s ease-in-out infinite;

 }


 @media(max-width:1399.98px) {
     .process-section .our-process-main:nth-child(2n+3) .our-process-r .img-1 {
         right: -120px;
     }

     .process-section .shape-3 {
         width: 100px;
         height: 240px;
         top: 40%;
     }
 }

 @media(max-width:1199.98px) {
     .process-section .our-process-main:nth-child(2n+3) .our-process-r .img-1 {
         right: -140px;
     }

     .process-section .our-process-l {
         padding-right: 15px;
     }

     .process-section .our-process-l span {
         width: 60px;
         height: 60px;
         line-height: 60px;
         font-size: 24px;
     }

     .process-section .title-shape {
         right: 20%;
     }
 }

 @media(max-width:991.98px) {
     .process-section .title-row {
         padding-bottom: 30px;
         gap: 50px;
     }

     .process-section .title-shape {
         width: 60px;
     }

     .process-section .our-process {
         margin-left: 5%;
     }

     .process-section .our-process-main:nth-child(2n+1) .our-process-r .img-1 {
         right: -175px;
     }

     .process-section .our-process-main:nth-child(2n+4) .our-process-r .img-1 {
         left: -95px;
         top: 50px;
     }

     .process-section .our-process-main:nth-child(2n+4) .our-process-r .img-1 img {
         width: 160px;
     }

     .process-section .our-process-main:nth-child(2n+3) .our-process-r .img-1 img {
         width: 160px;
     }

     .process-section .our-process-main:nth-child(2n+3) .our-process-r .img-1 {
         right: -160px;
     }

     .process-section .our-process-r p {
         margin-top: 5px;
     }

     .process-section .our-process-row::before {
         bottom: -15px;
     }

     .process-section .title-shape {
         right: 15%;
     }
 }

 @media(max-width:767.98px) {
     .process-section .our-process-r .img-1 {
         display: none;
     }

     .process-section .our-process {
         margin-left: 0%;
         width: 100%;
     }

     .process-section .our-process-r {
         display: flex;
         flex-direction: column;
     }

     .process-section .our-process-r em {
         order: 3;
     }

     .process-section .title-row {
         padding-bottom: 25px;
         gap: 15px;
     }

     .process-section .title-shape {
         width: 50px;
     }

     .process-section .our-process-l span {
         width: 50px;
         height: 50px;
         line-height: 50px;
         font-size: 20px;
     }

     .process-section .our-process-3 {
         margin-top: 24px;
     }

     .process-section .our-process-main:nth-child(2n+2) .our-process-r .process-icon {
         bottom: -20px;
     }

     .process-section .our-process-row em {
         margin-top: 15px;
     }

     .process-section .our-process-main:nth-child(2n+4) {
         margin-top: 40px;
     }

     .process-section .our-process-main:nth-child(2n+2) {
         margin-top: 40px;
     }

     .process-section .our-process-row::after {
         width: 45px;
         height: 45px;
         top: 55%;
     }

     .process-section .our-process-row::before {
         left: 5%;
         width: 40px;
         height: 40px;
     }

     .process-section .title-shape {
         right: 1%;
         width: 40px;
         top: 50%;
     }
 }

 /* process-section end  */
 .testimonial-section {
     position: relative;
     overflow: hidden;
 }

 .testimonial-section::before {
     content: '';
     position: absolute;
     bottom: 10px;
     right: 21%;
     width: 54px;
     height: 74px;
     background: url(../images/deal-shape.png);
     background-size: contain;
     background-repeat: no-repeat;
     animation: breathe 3s ease-in-out infinite;
     z-index: -1;

 }

 .testimonial-section .main-title {
     margin-bottom: 50px;
 }

 .testimonial-section .testimonial-card {
     position: relative;
     background: var(--WhiteColor);
     border-radius: 20px;
     padding: 67px 40px 20px 40px;
     box-shadow: 0 15px 40px rgba(var(--BlackColorRGBA), .08);
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .testimonial-section .client-img {
     position: absolute;
     top: -50px;
     left: 0px;
 }

 .testimonial-section .client-img img {
     width: 100px;
     height: 100px;
     border-radius: 20px;
     object-fit: cover;
 }

 .testimonial-section .testimonial-content {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     flex-grow: 1;
 }

 .testimonial-section .testimonial-content p {
     line-height: 24px;
     font-size: 15px;
     margin-bottom: 14px;
 }

 .testimonial-section .swiper-slide {
     height: auto !important;
     padding-top: 50px;
 }

 .testimonial-section .play-btn {
     width: 29px;
     height: 29px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: auto;
     text-decoration: none;
     transition: .3s;
 }

 .testimonial-section .play-btn:hover {
     transform: scale(1.1);
 }

 .testimonial-section .swiper {
     padding-bottom: 80px;
 }

 .testimonial-section .swiper-pagination-bullet {
     width: 10px;
     height: 10px;
     background: #D9D9D9;
     border: 1px solid var(--PrimaryColor);
     opacity: 1;
     width: 12px;
     height: 12px;
 }

 .testimonial-section .swiper-pagination-bullet-active {

     background: var(--PrimaryColor);
 }

 /* Decorative Shape Top Left */
 .testimonial-section .dot-pattern {
     position: absolute;
     width: 250px;
     height: 170px;
     top: 15px;
     left: -41px;
     z-index: -1;
 }

 .testimonial-section .dot-pattern span {
     position: absolute;
     width: 83px;
     height: 83px;
     border-radius: 50%;
     background: #c4dc52;
     animation: floatBall 4s ease-in-out infinite;
 }

 /* Top Row */
 .testimonial-section .dot-pattern span:nth-child(1) {
     top: 0;
     left: 0;
     animation-delay: 0s;
 }

 .testimonial-section .dot-pattern span:nth-child(2) {
     top: 0;
     left: 95px;
     animation-delay: .4s;
 }

 /* Bottom Row */
 .testimonial-section .dot-pattern span:nth-child(3) {
     top: 95px;
     left: 0;
     animation-delay: .8s;
 }

 .testimonial-section .dot-pattern span:nth-child(4) {
     top: 95px;
     left: 95px;
     animation-delay: 1.2s;
 }

 .testimonial-section .dot-pattern span:nth-child(5) {
     top: 95px;
     left: 190px;
     animation-delay: 1.6s;
 }

 @keyframes floatBall {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }
 }

 /* Decorative Shape Right */
 .testimonial-section::after {
     content: "";
     position: absolute;
     right: 0px;
     top: 50px;
     width: 569px;
     z-index: -1;
     height: 494px;
     background: url(../images/testimonial-bg.png);
     background-repeat: no-repeat;
     background-size: contain;
 }

 @media(max-width:1199px) {
     .testimonial-section::after {
         width: 400px;
         height: 300px;
     }

     .testimonial-section .dot-pattern span {
         height: 60px;
         width: 60px;
     }

     .testimonial-section .dot-pattern {
         left: -30px;
     }

     .testimonial-section .dot-pattern span:nth-child(2) {
         left: 70px;
     }

     .testimonial-section .dot-pattern span:nth-child(3) {
         top: 75px;
     }

     .testimonial-section .dot-pattern span:nth-child(4) {
         left: 70px;
         top: 75px;
     }

     .testimonial-section .dot-pattern span:nth-child(5) {
         left: 140px;
         top: 75px;
     }
 }

 @media(max-width:991px) {

     .testimonial-section .main-title {
         margin-bottom: 60px;
     }

     .testimonial-section .testimonial-card {
         padding: 67px 20px 20px 20px;
     }
 }

 @media(max-width:767px) {
     .testimonial-section::before {
         right: 5%;
     }

     .testimonial-section .dot-pattern {
         width: 100px;
         height: 70px;
         left: -15px;
         top: 0;

     }

     .testimonial-section .dot-pattern span:nth-child(2) {
         left: 28px;
     }

     .testimonial-section .dot-pattern span {
         height: 25px;
         width: 25px;
     }

     .testimonial-section .dot-pattern span:nth-child(3) {
         top: 35px;
     }

     .testimonial-section .dot-pattern span:nth-child(4) {
         left: 28px;
         top: 35px;
     }

     .testimonial-section .dot-pattern span:nth-child(5) {
         left: 56px;
         top: 35px;
     }

     .testimonial-section::after {
         width: 180px;
         height: 130px;
     }

     @keyframes floatBall {

         0%,
         100% {
             transform: translateY(0);
         }

         50% {
             transform: translateY(-4px);
         }
     }

 }

 /* cta-section start  */

 .cta-section .cta-main {
     display: flex;
     gap: 40px;
     border-radius: 20px;
     background: linear-gradient(90deg, #C6E25E 0%, #DEB417 100%);
     padding: 30px 40px 25px;
     position: relative;
     justify-content: space-between;
     z-index: 2;
     align-items: center;
     max-width: 1050px;
     width: 100%;
     margin: auto;
     margin-top: 100px;
 }

 .cta-section .cta-main::after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-image: url(../images/cta-shape1.png);
     background-repeat: no-repeat;
     background-size: cover;
     display: block;
     z-index: -1;
 }

 .cta-section .certi {
     margin-top: -150px;
     display: inline-block;
     max-width: 200px;
 }

 .cta-section .cta-shape {
     position: absolute;
     right: 110px;
     top: -50px;
 }

 .cta-section .cta-info h3 {
     font-weight: 700;
     font-size: 20px;
     line-height: 22px;
     margin-bottom: 5px;
     color: #092565;
 }

 .cta-section .cta-info p {
     font-size: 14px;
     line-height: 24px;
     margin-top: 0;
     color: var(--BodyColor);
 }

 .cta-section .btn {
     flex-shrink: 0;
 }

 .cta-section .btn.btn-primary:hover {
     background: var(--BodyColor);
     color: var(--WhiteColor);
 }

 .cta-section .btn.btn-primary:hover i svg path {
     stroke: var(--WhiteColor);
 }

 @media(max-width:1199.98px) {
     .cta-section .cta-main {
         padding: 25px;
         gap: 15px;
         margin-top: 70px;
     }

     .cta-section .btn {
         padding: 15px 15px;
     }

     .cta-section .certi {
         margin-top: -100px;
         max-width: 170px;
     }
 }

 @media(max-width:991.98px) {
     .cta-section .cta-shape {
         right: 70px;
     }
 }

 @media(max-width:767.98px) {
     .cta-section .cta-shape {
         right: 15px;
         width: 50px;
         top: -40px;
     }

     .cta-section .cta-main {
         flex-direction: column;
         margin-top: 30px;
     }

     .cta-section .certi {
         margin-top: -100px;
         max-width: 125px;
     }

     .cta-section .cta-info {
         text-align: center;
     }

     .cta-section .certi {
         display: none;
     }
 }

 /* cta-section end  */




 .finright-news-section {
     padding: 80px 0;
     position: relative;
     z-index: 1;
     background: #ffffff;
 }

 .finright-news-inner {
     position: relative;
 }

 .finright-news-section .sec-title {
     margin-bottom: 40px;
 }


 .finright-news-row {
     row-gap: 24px;
 }

 .finright-news-card {
     min-height: 150px;
     background: #ffffff;
     border: 1px solid #e7e8ee;
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 24px 20px;
     box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
     transition: all 0.3s ease-in-out;
     height: 100%;
 }

 .finright-news-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
 }

 .finright-news-card img {
     max-width: 100%;
     max-height: 58px;
     width: auto;
     height: auto;
     object-fit: contain;
     display: block;
 }

 /* Large tablet */
 @media (max-width: 1199px) {


     .finright-news-card {
         min-height: 140px;
         padding: 20px 16px;
     }

     .finright-news-card img {
         max-height: 52px;
     }
 }

 /* Tablet */
 @media (max-width: 991px) {
     .finright-news-section {
         padding: 70px 0;
     }

     .finright-news-section .sec-title {
         margin-bottom: 30px;
     }



     .finright-news-row {
         row-gap: 20px;
     }

     .finright-news-card {
         min-height: 130px;
         border-radius: 16px;
     }
 }


 /* Mobile */
 @media (max-width: 767px) {
     .finright-news-section {
         padding: 50px 0;
     }

     .finright-news-section .sec-title {
         margin-bottom: 24px;
     }



     .finright-news-row {
         row-gap: 16px;
     }

     .finright-news-card {
         min-height: 110px;
         padding: 16px 12px;
         border-radius: 14px;
     }

     .finright-news-card img {
         max-height: 40px;
     }
 }