body{
	margin: 0;
	padding: 0;
	font-family:'Poppins',sans-serif;
	background: #010910;
	overflow-x:hidden;
    scroll-behavior:smooth;
}
#my-scrollbar{
    width:100%;
    height:100vh;
    overflow:hidden;
}
p,h1,h2,h3,h4,h5,h6{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}

.btns{
    padding:10px 46px 10px 16px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    display: table;
    font-size: 14px;
    position: relative;
}
.btns:after{
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-54%);
    font-size: 20px;
}

.btns-primary{
    background: linear-gradient(135deg, #096bf5, #082f6e);
    color:#fff;
}

.btns-primary:hover{
    background:#fff;
    color:#082f6e;
}
.btns-outline{
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
}
.btns-outline:hover{
    background:#fff;
    color:#082f6e;
}
.about-sec{
    width: 100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 0 150px;
    position:relative;
    overflow:hidden;
}
.about-sec:before{
    content: '';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
    animation:glow 5s infinite alternate ease-in-out;
    left: -300px;
    top: 0;
}
.about-sec:after{
    content: '';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
    animation:glow 5s infinite alternate ease-in-out;
    right: -300px;
    bottom: 0;
}
@keyframes glow{
    0%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(20px);
    }
}
.about-sec .about-wrapper{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    position:relative;
    z-index:2;
}
.about-sec .about-wrapper .about-content{
    width:60%;
}
.about-sec .about-wrapper .about-content h4{
    font-size:22px;
    color:#096af3;
    margin-bottom:20px;
    letter-spacing:2px;
    text-transform:uppercase;
}
.about-sec .about-wrapper .about-content h2{
    font-size:62px;
    line-height:1.1;
    margin-bottom:30px;
    font-weight:700;
    color: #fff;
}
.about-sec .about-wrapper .about-content h2 span{
    color:#096af3;
}
.about-sec .about-wrapper .about-content p{
    font-size:14px;
    line-height:24px;
    opacity:.8;
    margin-bottom:10px;
    color: #fff;
    font-weight: 300;
}
.about-sec .about-wrapper .btn-group{
    display:flex;
    gap:20px;
    margin-top:45px;
}
.about-sec .about-wrapper .about-animation{
    width:40%;
    height:500px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.about-sec .about-wrapper .main-image{
    width:400px;
    height: 300px;
    border-radius: 20px;
    position:relative;
    z-index:5;
    filter:drop-shadow(0 40px 80px rgba(0,0,0,.5));
}
.about-sec .about-wrapper .float-card{
    position:absolute;
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    overflow:hidden;
    z-index:10;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}
.about-sec .about-wrapper .float-card img{
    width:100%;
    display:block;
}
.about-sec .about-wrapper .card1{
    width:200px;
    top:0px;
    left:0;
}
.about-sec .about-wrapper .card2{
    width:200px;
    bottom:0px;
    right:0;
}
.about-sec .about-wrapper .ring{
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    z-index:1;
}
.product-section{
	width: 100%;
	height: auto;
	position: relative;
}

.product-section .service-box{
	width: 100%;
	background: rgba(255, 255, 255, 1.0);
	border-radius: 20px;
    padding: 15px;
}
.product-section .service-box .text{
    width: 100%;
    height: auto;
    position: relative;
    padding: 30px 30px;
}
.product-section .service-box .text h4{
    font-size: 18px;
    color: #096af3;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.product-section .service-box .text h2{
    font-size: 62px;
    font-weight: 700;
    color:#010910;
    margin-bottom: 12px;
}
.product-section .service-box .text h2 span{
    color: #096af3;
}
.product-section .service-box .text p{
    font-weight: 300;
    color: #929ba3;
}
.product-section .service-box .product-box{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 30px;
}
.product-section .service-box .product-box .card{
    width:100%;
    height:500px;
    border-radius:25px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 20px 80px rgba(0,0,0,.4);
}
.product-section .service-box .product-box .card .cards-body{
    width: 100%;
    height: auto;
    text-align: left;
    padding: 0 30px;
}
.product-section .service-box .product-box .card .cards-body .top{
    text-align: center;
}
.product-section .service-box .product-box .card .cards-body .icon{
    background: rgba(255, 255, 255, 1.0);
    width: 70px;
    height: 70px;
    display: table;
    border-radius: 12px;
    box-shadow:0 20px 80px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 10px;
    flex: 0 0 70px;
    margin: auto;
    margin-bottom: 10px;
}
.product-section .service-box .product-box .card .cards-body .icon img{
    width: 100%;
}
.product-section .service-box .product-box .card .cards-body h3{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-section .service-box .product-box .card .cards-body p{
    color: #fff;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 300;
    text-align: center;
}
.product-section .service-box .product-box .card .cards-body .list{
    display: flex;
    justify-content: center;
    gap: 8px;
}
.product-section .service-box .product-box .card .cards-body ul{
    list-style: none;
    padding: 0;
    width: 50%;
}
.product-section .service-box .product-box .card .cards-body ul li{
    font-size: 11px;
    color: #fff;
    margin-bottom: 0;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 8px 8px 8px 24px;
    border-radius: 4px;
    margin-bottom: 8px;
    position: relative;
}
.product-section .service-box .product-box .card .cards-body ul li:before{
    content:'';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    left: 8px;
    top: 12px;
}
.product-section .service-box .product-box .card .cards-body .btns{
    margin: auto;
}
.product-section .service-box .product-box .card:nth-child(1){
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.product-section .service-box .product-box .card:nth-child(2){
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.product-section .service-box .product-box .card:nth-child(3){
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.product-section .service-box .product-box .card:nth-child(4){
   background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.product-section .service-box .product-box .card:nth-child(5){
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.product-section .service-box .product-box .card:nth-child(6){
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.product-section .service-box .product-box .card:nth-child(7){
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.product-section .service-box .product-box .card:nth-child(8){
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.product-section .service-box .product-box .card:nth-child(9){
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.product-section .service-box .product-box .card:nth-child(10){
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.product-section .service-box .product-box .card:nth-child(11){
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.product-section .service-box .product-box .card:nth-child(12){
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}

.product-section .service-box .text .next-btn{
    border: none;
    background: none;
    text-decoration: underline;
    margin-top: 20px;
    color: #096bf5;
    display: table;
    padding: 0;
}
.services-section{
  padding:150px 0 100px;
  position:relative;
  width: 100%;
  height: auto;
  position: relative;
}
.services-section .title{
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.services-section .title h4{
    font-size: 18px;
    color: #096af3;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.services-section .title h2{
    font-size: 62px;
    font-weight: 700;
    color:#fff;
    margin-bottom: 12px;
}
.services-section .title h2 span{
    color:#096af3;
}
.services-section .service-card{
  position:relative;
  height: 100%;
  border-radius:20px;
  overflow:hidden;
  background:rgba(255, 255, 255, 1);
  padding:30px;
  transition:.5s;
  border:1px solid rgba(255,255,255,.05);
  transform-style:preserve-3d;
  box-shadow:0 20px 80px rgba(0,0,0,.4);
}
.services-section .service-card:before{
    content: "";
    position: absolute;
    width: 130px;
    height: 280px;
    bottom: -135px;
    right: -45px;
    background: linear-gradient(135deg, #096bf5, #082f6e);
    opacity: 0.20;
    transform: rotate(45deg);
}
.services-section .col-lg-4:nth-child(1) .service-card:before{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.services-section .col-lg-4:nth-child(2) .service-card:before{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.services-section .col-lg-4:nth-child(3) .service-card:before{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.services-section .col-lg-4:nth-child(4) .service-card:before{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.services-section .col-lg-4:nth-child(5) .service-card:before{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.services-section .col-lg-4:nth-child(6) .service-card:before{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
/*.services-section .service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left,
  rgba(9,106,243,.50),
  transparent 60%);
  opacity:0;
  transition:.5s;
  border-radius: 35px 0 0 0;
}
.services-section .service-card:hover::before{
  opacity:1;
}*/
.services-section .service-card .service-number{
  font-size:90px;
  font-weight:bold;
  opacity:.1;
  position:absolute;
  top:20px;
  right:30px;
  color: #fff;
}
.services-section .service-card .service-top{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
}
.services-section .service-card .service-icon{
  width:60px;
  height:60px;
  flex: 0 0 60px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:10px;
  font-size:40px;
  backdrop-filter:blur(10px);
  margin-right: 16px;
}
.services-section .col-lg-4:nth-child(1) .service-icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.services-section .col-lg-4:nth-child(2) .service-icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.services-section .col-lg-4:nth-child(3) .service-icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.services-section .col-lg-4:nth-child(4) .service-icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.services-section .col-lg-4:nth-child(5) .service-icon{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.services-section .col-lg-4:nth-child(6) .service-icon{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.services-section .col-lg-4:nth-child(7) .service-icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.services-section .col-lg-4:nth-child(8) .service-icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.services-section .service-card h3{
  font-size:22px;
  line-height: 28px;
  margin-bottom:10px;
  color: #000;
}
.services-section .service-card p{
  font-size:14px;
  line-height:24px;
  opacity:.50;
  color: #000;
}
.services-section .btns{
  z-index: 9;
  margin-top: 20px;
  position: relative;
}
.services-section .service-card:hover{
  transform:translateY(-15px) rotateX(5deg) rotateY(-5deg);
}
.services-section .service-card .btns-outline{
    border-color: #797979;
    color: #797979;
}
.choose-section{
position:relative;
background:transparent;
padding: 10px 0 50px;
}
/*.choose-section:before{
    content: '';
    position:absolute;
    width:800px;
    height:800px;
    border-radius:50%;
    left: -400px;
    top: 0;
    background:radial-gradient(rgba(9,106,243,1), transparent 50%);
    filter:blur(40px);
}
.choose-section:after{
    content: '';
    position:absolute;
    width:800px;
    height:800px;
    border-radius:50%;
    right: -400px;
    bottom: 0;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
   
}*/
.choose-section .choose-card{
background:#fff;
padding:30px;
border-radius:20px;
margin-bottom:40px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
display:flex;
align-items:center;
gap:25px;
transform-origin:center;
}
.choose-section .choose-card:nth-child(1){
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.choose-section .choose-card:nth-child(2){
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.choose-section .choose-card:nth-child(3){
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.choose-section .choose-card:nth-child(4){
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.choose-section .choose-card:nth-child(5){
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.choose-section .choose-card:nth-child(6){
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.choose-section .choose-card:nth-child(7){
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.choose-section .choose-card:nth-child(8){
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.choose-section .choose-card .icon{
width:90px;
height:90px;
background:#fff;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
color:#fff;
flex-shrink:0;
padding: 15px;
}
.choose-section .choose-card .icon img{
    width: 100%;
}
.choose-section .choose-card .content h3{
font-size:24px;
font-weight: 600;
margin-bottom:10px;
color: #fff;
}
.choose-section .choose-card .content p{
    font-size: 14px;
    line-height: 22px;
    color: #fff;
}
.choose-section .right-content{
height: auto;
top: 100px;
}
.choose-section .right-content .heading-box{
    padding-left: 30px;
}
.choose-section .right-content .heading-box h5{
color:#096bf5;
font-size:18px;
margin-bottom:15px;
letter-spacing:2px;
text-transform:uppercase;
}
.choose-section .right-content .heading-box h2{
font-size:60px;
line-height:1.1;
font-weight:700;
color: #fff;
}
.choose-section .right-content .heading-box h2 span{
color:#096bf5;
}
.choose-section .right-content p{
margin-top:15px;
font-size:14px;
line-height:22px;
color: #fff;
opacity: 0.8;
margin-bottom: 30px;
}
.choose-section .right-content .btns{
    display: table;
}
.work-process-section{
  height: auto;
  padding:0 0 100px;
  overflow: hidden;
}
.work-process-section:before{
    content: '';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
    animation:glow 5s infinite alternate ease-in-out;
    left: -300px;
    top: 0;
}
.work-process-section:after{
    content: '';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
    animation:glow 5s infinite alternate ease-in-out;
    right: -300px;
    bottom: 0;
}
.work-process-section .title{
    text-align: center;
    margin-bottom: 50px;
}
.work-process-section .title h2{
    font-size: 62px;
    font-weight: 700;
    color:#fff;
    margin-bottom: 12px;
    margin-bottom: 20px;
}
.work-process-section .title h2 span{
    color:#096af3;
}
.work-process-section .title p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    opacity: 0.7;
}
.work-process-section .image{
    width: 100%;
    height: 45vh;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
}
.work-process-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-process-section .right {
  width: 100%;
  height: 45vh;
  overflow: hidden;
  position: relative;
}
.work-process-section .right .track {
  display: flex;
  height: 100%;
}
.work-process-section .right .panel {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
.work-process-section .right .panel .step-no{
    width: 100px;
    height: 100px;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.work-process-section .right .panel:nth-child(1) .step-no{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.work-process-section .right .panel:nth-child(2) .step-no{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.work-process-section .right .panel:nth-child(3) .step-no{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.work-process-section .right .panel:nth-child(4) .step-no{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.work-process-section .right .panel:nth-child(5) .step-no{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.work-process-section .right .panel:nth-child(6) .step-no{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.work-process-section .right .panel:nth-child(7) .step-no{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.work-process-section .right .panel:nth-child(8) .step-no{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.work-process-section .right .panel h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}
.work-process-section .right .panel p{
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
    color: #fff;
    text-align: center;
    padding: 0 30px;
}
.work-process-section .right-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.work-process-section .marquee{
display:flex;
gap:30px;
width:max-content;
padding:20px;
}
.work-process-section .product{
width:250px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.12);
border-radius:25px;
padding:24px 16px;
text-align:center;
flex-shrink:0;
transition:.4s;
}
.work-process-section .product:hover{
transform:translateY(-12px);
}
.work-process-section .icon{
width:60px;
height:60px;
margin:auto;
border-radius:10px;
background:rgba(255,255,255);
display:flex;
justify-content:center;
align-items:center;
margin-bottom:20px;
transition:.4s;
padding: 10px;
}
.work-process-section .product:nth-child(1) .icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.work-process-section .product:nth-child(2) .icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.work-process-section .product:nth-child(3) .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.work-process-section .product:nth-child(4) .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.work-process-section .product:nth-child(5) .icon{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.work-process-section .product:nth-child(6) .icon{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.work-process-section .product:nth-child(7) .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.work-process-section .product:nth-child(8) .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.work-process-section .product:nth-child(9) .icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.work-process-section .product:nth-child(10) .icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.work-process-section .product:nth-child(11) .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.work-process-section .product:nth-child(12) .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.work-process-section .product:nth-child(13) .icon{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.work-process-section .product:nth-child(14) .icon{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.work-process-section .product:nth-child(15) .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.work-process-section .product:nth-child(16) .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.work-process-section .icon img{
width: 100%;
}

.work-process-section .product h3{
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}
.work-process-section .product a{
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}
.testimonials-section{
    width: 100%;
    height: auto;
    position: relative;
    padding: 00px 0 80px;
}
.testimonials-section .title {
    text-align: center;
    margin-bottom: 30px;
}
.testimonials-section .title h2 {
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    margin-bottom: 20px;
}
.testimonials-section .title h2 span {
    color: #096af3;
}
.testimonials-section .title p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    opacity: 0.7;
}
.testimonials-section .testimonialSwiper{
    padding: 0px 10px 45px;
    overflow: hidden;
    position: relative;
}
.testimonials-section .testimonialSwiper:before{
    content: '';
    width: 200px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0;
    background: linear-gradient(90deg,rgba(1, 9, 16, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 99;
}
.testimonials-section .testimonialSwiper:after{
    content: '';
    width: 200px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
    background: linear-gradient(270deg,rgba(1, 9, 16, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 99;
}
.testimonials-section .testimonialSwiper .swiper-wrapper {
    align-items: center;
}
.testimonials-section .testimonialSwiper .swiper-slide {
    transform: scale(0.88) !important;
    opacity: 0.55;
    transition:transform 0.6s ease, opacity 0.6s ease;
    border-radius: 20px;
    border: none;
}
.testimonials-section .testimonialSwiper .swiper-slide-active {
    transform: scale(1)!important;
    opacity: 1;
    z-index: 5;
}
.testimonials-section .testimonial-card {
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow:0 15px 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s ease;
}

.testimonials-section .swiper-slide-active .testimonial-card{
    box-shadow:0 20px 60px rgba(9, 106, 243, 0.18);
}
.testimonials-section .testimonial-card .quote{
    font-size: 85px;
    font-weight: bold;
    color: #096af3;
    position: absolute;
    right: 25px;
    top: 0px;
    opacity: 0.6;
}
/*.testimonials-section .swiper-slide:nth-child(1) .quote{
    color:#096bf5;
}
.testimonials-section .swiper-slide:nth-child(2) .quote{
    color:#ff6a00;
}
.testimonials-section .swiper-slide:nth-child(3) .quote{
    color:#00c9a7;
}
.testimonials-section .swiper-slide:nth-child(4) .quote{
    color:#f7971e;
}
.testimonials-section .swiper-slide:nth-child(5) .quote{
    color:#d7e956;
}
.testimonials-section .swiper-slide:nth-child(6) .quote{
    color:#ef58b1;
}
.testimonials-section .swiper-slide:nth-child(7) .quote{
    color:#00c9a7;
}
.testimonials-section .swiper-slide:nth-child(8) .quote{
    color:#f7971e;
}*/
.testimonials-section .testimonial-card .rating {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.testimonials-section .testimonial-card .testimonial-text {
    font-size: 14px;
    opacity: .50;
    color: #000;
    margin-bottom: 10px;
}
.testimonials-section .testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonials-section .testimonial-card .client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dae7fa;
}
.testimonials-section .testimonial-card .client-info h4 {
    font-size: 14px;
    color: #050d19;
}
.testimonials-section .testimonial-card .client-info span {
    font-size: 12px;
    color: #888;
}

.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
    width: 48px;
    height: 48px;
    color: #ffffff;
    z-index: 999;
}
.testimonials-section .swiper-button-next{
    right: -10px;
}
.testimonials-section .swiper-button-prev{
    left: -10px;
}

.main-footer{
    width: 100%;
    height: auto;
    position: relative;
    background: url(../img/footer-back.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 500px;
}
.main-footer .footer-top{
    background:linear-gradient(135deg,#096bf5,#082f6e);
    padding: 10px 0;
}
.main-footer .footer-top .top-section{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.main-footer .footer-top .top-section .left{
    display: flex;
    gap: 16px;
}
.main-footer .footer-top .top-section .dtl-box{
    display: flex;
    align-items: center;
}
.main-footer .footer-top .top-section .dtl-box .icon{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border:1px solid #fff;
    color: #fff;
    font-size: 18px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-footer .footer-top .top-section .dtl-box p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
.main-footer .footer-bottom{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
    gap: 30px;
}

.main-footer .footer-bottom .footer-card{
    width: auto;
    height: auto;
    max-width: 400px;
}
.main-footer .footer-bottom .footer-card .logo{
    width: 120px;
    background: #fff;
    border-radius: 10px;
    display: table;
    padding: 10px;
    margin-bottom: 30px;
}
.main-footer .footer-bottom .footer-card .logo img{
    width: 100%;
}
.main-footer .footer-bottom .footer-card p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}
.main-footer .footer-bottom .footer-card h4{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}
.main-footer .footer-bottom .footer-card .useful_links{
    list-style: none;
    padding: 0;
    margin:0;
}
.main-footer .footer-bottom .footer-card .useful_links li{
    display: block;
}
.main-footer .footer-bottom .footer-card .useful_links li a{
    padding: 3px 0;
    color: #fff;
    display: block;
    opacity: 0.7;
    font-size: 14px;
}
.main-footer .footer-bottom .footer-card .useful_links li a i{
    margin-right: 8px;
}
.main-footer .footer-last{
    background: #010910;
    padding: 15px;
    text-align: left;
}
.main-footer .footer-last p{
    color: #fff;
    font-weight: 300;
}
.main-footer .footer-last p span{
    color: #096af3;
}
.main-footer .footer-last p a{
    font-size: 14px;
    color: #fff;
}
.page-banner{
    width: 100%;
    height: auto;
    position: relative;
    min-height: 275px;
    background: url(../img/page-banner.jpg);
    background-size: cover;
    padding: 140px 0 0;
}
.page-banner .page-title{
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
}
.page-banner .page-title h2{
    font-size: 52px;
    font-weight: 600;
    color: #fff;
}
.page-banner .page-title h2 span{
    color: #096af3;
}
.page-banner .page-title p{
    color: #fff;
}
.page-banner .page-title p a{
    color: #fff;
}
.about-us-page-sec{
    width: 100%;
    height: auto;
    position: relative;
    padding: 100px 0;
}
.about-us-page-sec:before{
    content: '';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
    animation:glow 5s infinite alternate ease-in-out;
    left: -300px;
    top: 0;
}
.about-us-page-sec:after{
    content: '';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(9,106,243,.45), transparent 50%);
    filter:blur(40px);
    animation:glow 5s infinite alternate ease-in-out;
    right: -300px;
    bottom: 0;
}
.about-us-page-sec .text{
    width: 100%;
    height: auto;
    position: relative;
    padding-right: 50px;
}
.about-us-page-sec .text .btn-group{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.about-us-page-sec .text h1{
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.about-us-page-sec .text h1 span{
    color:#096af3;
    font-weight: 700;
}
.about-us-page-sec .text h2{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}
.about-us-page-sec .text p{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}
.about-us-page-sec .image{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.about-us-page-sec .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.who-we-are-sec{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
}
.who-we-are-sec .sec-wrapper{
    background: #fff;
    border-radius: 20px;
    padding: 30px 30px;
}
.who-we-are-sec .sec-wrapper .image{
    width: 100%;
    position:relative;
    border-radius: 20px;
    overflow: hidden;
}
.who-we-are-sec .sec-wrapper .image img{
    width: 100%;
}
.who-we-are-sec .sec-wrapper .text{
    width: 100%;
    height: auto;
    position: relative;
}
.who-we-are-sec .sec-wrapper .text h2{
    font-size: 45px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.who-we-are-sec .sec-wrapper .text h2 span{
    color:#096af3;
    font-weight: 700;
}
.who-we-are-sec .sec-wrapper .text p{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}
.mission-vision-sec{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 0 100px;
}
.mission-vision-sec .mission-vision-container{
    width: 100%;
    height: auto;
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
}
.mission-vision-sec .cards{
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: .5s;
    transform-style: preserve-3d;
}
.mission-vision-sec .cards .top{
    display: flex;
    align-items: center;

}
.mission-vision-sec .cards .icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    padding: 10px;
    margin-right:20px;
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.mission-vision-sec .cards .icon.dif{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.mission-vision-sec .cards .icon img{
    width: 100%;
}
.mission-vision-sec .cards h3{
    font-weight: 600;
    color: #000;
    font-size: 30px;
    margin-bottom: 20px;
}
.mission-vision-sec .cards p{
    color: #000;
    line-height: 25px;
    font-weight: 400;
    opacity: .50;
    font-size: 14px;
}
.mission-vision-sec .cards ul{
    margin: 0;
    padding: 0;
    list-style: none;

}
.mission-vision-sec .cards ul li{
    color: #000;
    font-weight: 400;
    opacity: .50;
    background-position: left center;
    font-size: 14px;
    background: url(../img/tick-icon-2.png) no-repeat;
    padding: 4px 0;
    padding-left: 25px;
    background-position-y: center;
}
.mission-vision-sec .image{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #efefef;
    overflow: hidden;
}
.mission-vision-sec .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.counter-section{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
}
.counter-section .counter-box{
    max-width:100%;
    margin:auto;
    border-radius:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 15px;
    position: relative;
    z-index: 9;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .05);
}
.counter-section .counter-box .counter-item{
    flex:1;
    position:relative;
    gap: 16px;
    align-items: center;
    display: flex;
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding-left: 30px;
}
.counter-section .counter-box .counter-item:last-child{
    border: none;
}

.counter-section .counter-box .counter-item .icon{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
    padding: 10px;
}
.counter-section .counter-box .counter-item:nth-child(1) .icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.counter-section .counter-box .counter-item:nth-child(2) .icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.counter-section .counter-box .counter-item:nth-child(3) .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.counter-section .counter-box .counter-item:nth-child(4) .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.counter-section .counter-box .counter-item .icon img{
    width: 100%;
}
.counter-section .counter-box .counter-item .number{
    font-size:38px;
    font-weight:700;
    color:#fff;
    line-height:1;
}
.counter-section .counter-box .counter-item .number.plus::after{
    content:"+";
    color:#0d6efd;
}
.counter-section .counter-box .counter-item .label{
    font-size:18px;
    color:#fff;
    opacity: 0.5;
}
.about-why-choose{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
}
.about-why-choose .title{
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.about-why-choose .title h2{
    font-size: 45px;
    font-weight: 600;
    color: #fff;
}
.about-why-choose .title h2 span{
    color: #096af3;
}
.about-why-choose .text{
    width: 100%;
    background: rgba(255, 255, 255);
    padding:20px;
    transition: .5s;
    border: 1px solid rgba(255, 255, 255, .05);
    transform-style: preserve-3d;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
}
.about-why-choose .text:before{
    content: '';
    width: 130px;
    height: 200px;
    position: absolute;
    bottom: -120px;
    right: -50px;
    transform: rotate(45deg);
    background: #096bf5;
    opacity: 0.1;
}
.about-why-choose .col-lg-4:nth-child(2) .text:before{background: #ee0979;}
.about-why-choose .col-lg-4:nth-child(3) .text:before{background: #845ec2;}
.about-why-choose .col-lg-4:nth-child(4) .text:before{background: #ffd200;}
.about-why-choose .col-lg-4:nth-child(5) .text:before{background: #46bc66;}
.about-why-choose .col-lg-4:nth-child(6) .text:before{background: #9b47f1;}
.about-why-choose .text h3{
    font-size: 22px;
    font-weight: 600;
    color: #000;
    position: relative;
}
.about-why-choose .text .top{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.about-why-choose .text .top .icon{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #fff;
    flex: 0 0 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-why-choose .col-lg-4:nth-child(1) .text .top .icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.about-why-choose .col-lg-4:nth-child(2) .text .top .icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.about-why-choose .col-lg-4:nth-child(3) .text .top .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.about-why-choose .col-lg-4:nth-child(4) .text .top .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.about-why-choose .col-lg-4:nth-child(5) .text .top .icon{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.about-why-choose .col-lg-4:nth-child(6) .text .top .icon{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.about-why-choose .col-lg-4:nth-child(7) .text .top .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.about-why-choose .col-lg-4:nth-child(8) .text .top .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.about-why-choose .text p{
    color: #000;
    line-height: 20px;
    font-weight: 400;
    opacity: .70;
    margin-bottom: 10px;
    font-size: 14px;
}
.about-why-choose .text ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.about-why-choose .text ul li{
    color: #000;
    line-height: 25px;
    font-weight: 400;
    opacity: .70;
    margin-bottom: 4px;
    background: url(../img/tick-icon-2.png) no-repeat;
    background-position: left center;
    padding-left: 20px;
    width: 50%;
    font-size: 12px;
}
.about-why-choose .text ul.same li{
    width: auto;
    padding-right: 10px;
}
.about-why-choose .para-text{
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.about-why-choose .para-text p{
    font-size: 14px;
    color: #fff;
}
.our-core-software{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
}
.our-core-software .title{
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.our-core-software .title h2{
    font-size: 45px;
    font-weight: 600;
    color: #fff;
}
.our-core-software .title h2 span{
    color: #096af3;
}
.our-core-software .text{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255);
    border-radius: 30px;
}
.our-core-software .text.blue{
    border-color:#096af3;
}
.our-core-software .text .heading{
    padding: 30px 16px;
    background: transparent;
    margin-bottom: 00px;
    text-align: left;
    min-height: 184px;
    border-radius: 30px;
    background: linear-gradient(135deg, #096bf5, #082f6e);
}
.our-core-software .col-lg-4:nth-child(2) .text .heading{
    background: linear-gradient(135deg, #ff6a00, #ee0979);
}
.our-core-software .col-lg-4:nth-child(3) .text .heading{
    background: linear-gradient(135deg, #00c9a7, #845ec2);
}
.our-core-software .text.blue .heading{
    background: #096af3;
}
.our-core-software .text .heading h3{
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.our-core-software .text.blue .heading h3{
    color:#fff;   
}
.our-core-software .text .heading p{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: .80;
}
.our-core-software .text ul{
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 16px;
    min-height: 330px;
}
.our-core-software .text ul li{
    color: #000;
    line-height: 25px;
    font-weight: 400;
    opacity: .70;
    margin-bottom: 8px;
    background: url(../img/tick-icon.png) no-repeat;
    background-position: left center;
    padding-left: 25px;
    width: 100%;
    font-size: 14px;
}
.our-core-software .text .btn-box{
    padding: 0px 16px 32px;
    text-align: center;
}
.our-core-software .text .btn-box .btns{
    margin: auto;
    border-color: #000;
    color: #000;
}
.pager-wrapper{
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.pager-wrapper .form-box{
    width: 100%;
    height: auto;
    position: relative;
    background: linear-gradient(135deg, #096bf5, #082f6e);
    border-radius: 20px;
    padding: 16px 24px;
    position: sticky;
    top: 100px;
}
.pager-wrapper .form-box h3{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}
.pager-wrapper .form-box .form-group{
    width: 100%;
    margin-bottom: 8px;
}
.pager-wrapper .form-box .form-group label{
    font-size: 12px;
    color: #fff;
    margin-bottom: 5px;
}
.pager-wrapper .form-box .form-group .form-control{
    font-size: 14px;
    background: #052859;
    color: #fff;
    border-color: #1671ef;
}
.pager-wrapper .form-box .form-group .form-select{
    font-size: 14px;
    background-color: #052859;
    color: #fff;
    border-color: #1671ef;
}
.pager-wrapper .form-box .form-group .form-control::placeholder{
    color:rgba(255, 255, 255, 0.5);
    font-weight: 300;
}
.pager-wrapper .form-box .form-group .custom-file-upload {
    width: 100%;
}
.pager-wrapper .form-box .form-group .file-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #1671ef;
    border-radius:0.375rem;
    padding: 2px;
    background: #052859;
} 
.pager-wrapper .form-box .form-group .upload-btn {
    background: #096af3;
    color: #fff;
    padding: 4px 18px;
    border-radius: 0.375rem;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    margin-bottom: 0;
}
.pager-wrapper .form-box .form-group .file-box input {
    display: none;
}
.pager-wrapper .form-box .form-group .file-name {
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 300;
}
.pager-wrapper .form-box .submit-btn{
    padding: 8px 10px;
    background: #fff;
    border: none;
    border-radius:0.375rem;
    color: #096af3;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
}
.pager-wrapper .form-box .submit-btn:hover{
    background: #000;
    color: #fff;
}
.pager-wrapper .text{
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
}
.pager-wrapper .text h2{
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.pager-wrapper .text h2 span{
    color: #096af3;
}
.pager-wrapper .text h3{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}
.pager-wrapper .text p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}
.pager-wrapper .card-view{
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
}
.pager-wrapper .card-view h3{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}
.pager-wrapper .card-view h3 span{
    color: #096af3;
}
.pager-wrapper .card-view .text{
    width: 100%;
    background: rgba(255, 255, 255);
    padding:20px;
    transition: .5s;
    border: 1px solid rgba(255, 255, 255, .05);
    transform-style: preserve-3d;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
    height: 100%;
}
.pager-wrapper .card-view .text:before{
    content: '';
    width: 130px;
    height: 200px;
    position: absolute;
    bottom: -120px;
    right: -50px;
    transform: rotate(45deg);
    background: #096bf5;
    opacity: 0.1;
}
.pager-wrapper .card-view .col-lg-4:nth-child(2) .text:before{background: #ee0979;}
.pager-wrapper .card-view .col-lg-4:nth-child(3) .text:before{background: #845ec2;}
.pager-wrapper .card-view .col-lg-4:nth-child(4) .text:before{background: #ffd200;}
.pager-wrapper .card-view .col-lg-4:nth-child(5) .text:before{background: #46bc66;}
.pager-wrapper .card-view .col-lg-4:nth-child(6) .text:before{background: #9b47f1;}
.pager-wrapper .card-view .text h3{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    position: relative;
    margin-bottom: 0;
}
.pager-wrapper .card-view .text .top{
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.pager-wrapper .card-view .text .top .icon{
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    flex: 0 0 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pager-wrapper .card-view .col-lg-4:nth-child(1) .text .top .icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.pager-wrapper .card-view .col-lg-4:nth-child(2) .text .top .icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.pager-wrapper .card-view .col-lg-4:nth-child(3) .text .top .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.pager-wrapper .card-view .col-lg-4:nth-child(4) .text .top .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.pager-wrapper .card-view .col-lg-4:nth-child(5) .text .top .icon{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.pager-wrapper .card-view .col-lg-4:nth-child(6) .text .top .icon{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.pager-wrapper .card-view .col-lg-4:nth-child(7) .text .top .icon{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.pager-wrapper .card-view .col-lg-4:nth-child(8) .text .top .icon{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.pager-wrapper .card-view .text p{
    color: #000;
    line-height: 20px;
    font-weight: 400;
    opacity: .70;
    margin-bottom: 10px;
    font-size: 14px;
}
.pager-wrapper .list-view{
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
}
.pager-wrapper .list-view h3{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}
.pager-wrapper .list-view h3 span{
    color: #096af3;
}
.pager-wrapper .list-view p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}
.pager-wrapper .list-view ul{
    list-style: none;
    margin:0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.pager-wrapper .list-view li{
    background: linear-gradient(90deg, rgba(9, 106, 243, 1) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 10px;
    color: #fff;
    font-size: 14px;
}
.testimonial-tab-sec{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 0 80px;
}
.testimonial-tab-sec .title{
    text-align: center;
}
.testimonial-tab-sec .title h2 {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
}
.testimonial-tab-sec .title h2 span {
    color: #096af3;
}
.testimonial-tab-sec .gallery-tabs{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
    position: relative;
}
.testimonial-tab-sec .gallery-tabs .gallery-tab{
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
}
.testimonial-tab-sec .gallery-tabs .tab-line {
    position: absolute;
    height: 3px;
    left: 0;
    bottom: -1px;
    width: 0;
    background: #096af3;
    border-radius: 10px;
}
.testimonial-tab-sec .gallery-tabs .gallery-tab.active {
    color: #096af3;
    font-weight: 600;
}
.testimonial-tab-sec .swiper-slide{
    flex: 0 0 auto;
    border-radius: 20px;
}
.testimonial-tab-sec .gallery-grid{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}
.testimonial-tab-sec .gallery-grid .gallery-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow:0 15px 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
}
.testimonial-tab-sec .gallery-grid .gallery-item .quote{
    font-size: 85px;
    font-weight: bold;
    color: #096af3;
    position: absolute;
    right: 25px;
    top: 0px;
    opacity: 0.6;
}
.testimonial-tab-sec .gallery-grid .gallery-item .rating {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.testimonial-tab-sec .gallery-grid .gallery-item .testimonial-text {
    font-size: 14px;
    opacity: .50;
    color: #000;
    margin-bottom: 10px;
}
.testimonial-tab-sec .gallery-grid .gallery-item .client {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-tab-sec .gallery-grid .gallery-item .client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dae7fa;
}
.testimonial-tab-sec .gallery-grid .gallery-item .client-info h4 {
    font-size: 14px;
    color: #050d19;
}
.testimonial-tab-sec .gallery-grid .gallery-item .client-info span {
    font-size: 12px;
    color: #888;
}
.testimonial-tab-sec .swiper-button-next,
.testimonial-tab-sec .swiper-button-prev {
    width: 48px;
    height: 48px;
    color: #096af3;
    z-index: 999;
}
.testimonial-tab-sec .swiper-button-next{
    right: -5px;
}
.testimonial-tab-sec .swiper-button-prev{
    left: -5px;
}
