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:16px 36px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    display: table;
}

.btns-primary{
    background:#096af3;
    color:#fff;
}

.btns-primary:hover{
    background:#fff;
    color:#111;
}
.btns-outline{
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
}
.btns-outline:hover{
    background:#fff;
    color:#111;
}
.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: 24px;
    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:24px;
    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: #f1f1f1;
	border-radius: 25px;
    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:480px;
    border-radius:40px;
    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: center;
    padding: 0 30px;
}
.product-section .service-box .product-box .card .cards-body .icon{
    background: rgba(255, 255, 255, 1.0);
    width: 90px;
    height: 90px;
    display: table;
    margin:auto;
    border-radius: 15px;
    box-shadow:0 20px 80px rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 15px;
}
.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: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-section .service-box .product-box .card .cards-body p{
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}
.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,#f7971e,#ffd200);
}
.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,#f7971e,#ffd200);
}
.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:35px;
  overflow:hidden;
  background:rgba(255, 255, 255, 0.05);
  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;
  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-icon{
  width:70px;
  height:70px;
  border-radius:15px;
  background:rgba(255,255,255,.06);
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:10px;
  font-size:40px;
  backdrop-filter:blur(10px);
  box-shadow:0 20px 80px rgba(0,0,0,.4);
}
.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: #fff;
}
.services-section .service-card p{
  font-size:16px;
  line-height:24px;
  opacity:.50;
  color: #fff;
}
.services-section .btns{
  z-index: 9;
  margin-top: 20px;
  position: relative;
}
.services-section .service-card:hover{
  transform:translateY(-15px) rotateX(5deg) rotateY(-5deg);
}
.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:25px;
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;
}

.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: 15px;
    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: 300px;
    background: url(../img/page-banner.jpg);
    background-size: cover;
    padding: 150px 0 0;
}
.page-banner .page-title{
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
}
.page-banner .page-title h2{
    font-size: 62px;
    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: 32px;
    overflow: hidden;
}
.about-us-page-sec .image img{
    width: 100%;
}
.who-we-are-sec{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
}
.who-we-are-sec .sec-wrapper{
    background: #fff;
    border-radius: 30px;
    padding: 30px 30px;
}
.who-we-are-sec .sec-wrapper .image{
    width: 100%;
    position:relative;
    border-radius: 30px;
    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 .cards{
    position: relative;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    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);
}
.mission-vision-sec .cards .icon{
    width: 90px;
    height: 90px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
}
.mission-vision-sec .col-lg-6:nth-child(1) .cards .icon{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.mission-vision-sec .col-lg-6:nth-child(2) .cards .icon{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.mission-vision-sec .cards h3{
    font-weight: 600;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}
.mission-vision-sec .cards p{
    color: #fff;
    line-height: 25px;
    font-weight: 300;
    opacity: .50;
    font-size: 14px;
}
.mission-vision-sec .cards ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.mission-vision-sec .cards ul li{
    color: #fff;
    line-height: 25px;
    font-weight: 300;
    opacity: .50;
    margin-bottom: 10px;
    background: url(../img/tick-icon.png) no-repeat;
    background-position: left center;
    padding-left: 25px;
    font-size: 14px;
}
.counter-section{
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 100px;
}
.counter-section .counter-box{
    max-width:100%;
    margin:auto;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 15px;
    position: relative;
    z-index: 9;
}
.counter-section .counter-box .counter-item{
    flex:1;
    position:relative;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.counter-section .counter-box .counter-item .icon{
    width: 90px;
    height: 90px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .4);
    margin: auto;
    margin-bottom: 30px;
    padding: 20px;
}
.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:62px;
    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: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);
    border-radius: 30px;
    height: 100%;
}
.about-why-choose .text h3{
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}
.about-why-choose .text h3:before{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #096bf5, #082f6e);
    border-radius: 8px;
    left: 0;
    top: 0;
}
.about-why-choose .col-lg-4:nth-child(1) .text h3:before{
    background:linear-gradient(135deg,#096bf5,#082f6e);
}
.about-why-choose .col-lg-4:nth-child(2) .text h3:before{
    background:linear-gradient(135deg,#ff6a00,#ee0979);
}
.about-why-choose .col-lg-4:nth-child(3) .text h3:before{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.about-why-choose .col-lg-4:nth-child(4) .text h3:before{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}
.about-why-choose .col-lg-4:nth-child(5) .text h3:before{
    background:linear-gradient(135deg,#d7e956,#46bc66);
}
.about-why-choose .col-lg-4:nth-child(6) .text h3:before{
    background:linear-gradient(135deg,#ef58b1,#9b47f1);
}
.about-why-choose .col-lg-4:nth-child(7) .text h3:before{
    background:linear-gradient(135deg,#00c9a7,#845ec2);
}
.about-why-choose .col-lg-4:nth-child(8) .text h3:before{
    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.png) no-repeat;
    background-position: left center;
    padding-left: 25px;
    width: 50%;
    font-size: 14px;
}
.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;
}