:root{
    --color-primary-blue:#103B6D;
    --color-primary-red:#EA2127;
    --color-white:#fff;
    --color-black:#000;
    --color-Raisin-black:#191825;
    --color-Dark-Charcoal:#313131;
    --color-parah:#827D7D;
    --color-parah-red:#EB3D3D;
    --color-orange-light:#FEAE5E;
    --color-orange-bright:#FEAE5E;
    --color-gray-mid:#909090;
    --color-gray-dim:#5F5F5F;
    --color-gray-dark:#333;
    --color-gray-lightSteel:#A5B0BD;
    --color-blue-soft:#F3F8FF;
    --color-pinkish-red:#FCA9AB;

    --font-Messiri : "El Messiri", sans-serif;
    --font-Inter:"Inter", sans-serif;
    --font-Poppins:"Poppins", sans-serif;
    --font-Raleway:"Raleway", sans-serif;
    --font-Montserrat:"Montserrat", sans-serif;
    --font-DMsans:"DM Sans", sans-serif;
    --font-Antonio:"Antonio", sans-serif;
    --font-Manrope:"Manrope", sans-serif;
}

*::-webkit-scrollbar-track
{
	background-color: #000;
}

*::-webkit-scrollbar
{
	width: 6px;
    height: 6px;
	background-color: transparent;
}

*::-webkit-scrollbar-thumb
{
	background-color: var(--color-orange-bright);
}
*:hover::-webkit-scrollbar-thumb
{
	background-color: var(--color-orange-bright);
}

/* Custom scrollbar styles for Firefox */
@supports (-moz-appearance: none) {
    * {
        scrollbar-width: thin; /* "auto" or "thin" */
        scrollbar-color: var(--color-orange-bright) #000; /* Thumb color and track color */
    }
}


html,body{
    margin: 0;
    padding: 0;
    font-family: var(--font-Inter);
    box-sizing: border-box;
    overflow-x: hidden;
}

.container{
    max-width: 1360px !important;
    padding: 0 30px;
}
.f-messiri{
    font-family: var(--font-Messiri);
}
.f-regular{
    font-weight: 400;
}
.f-medium{
    font-weight: 500;
}
.f-semiBold{
    font-weight: 600;
}
.f-bold{
    font-weight: 700;
}
.f-extraBold{
    font-weight: 800;
}
.f-black{
    font-weight: 900;
}
.fs-24{
    font-size: 24px; 
}
.heading-1{
    font-size: 56px; 
}
.heading-2{
    font-size: 46px; 
}
.heading-3{
    font-size: 44px; 
}
.heading-4{
    font-size: 30px; 
}
.heading-5{
    font-size: 26px; 
}
.text-PrimaryBlue{
    color:var(--color-primary-blue);
}
.text-PrimaryRed{
    color:var(--color-primary-red);
}
section{
    padding: 65px 0;
}
.parah {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.parah *{
    color:var(--color-parah);
    margin: 0;
    line-height: 25px;
}
.parah.white *{
    color:var(--color-white);
}
.parah-red{
    color:var( --color-parah-red) !important;
}
.parah ul li{
    margin-bottom: 5px;
    line-height: 30px !important;
}

.content-flex{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.content-flex.g-10{
    gap: 10px;
}
.content-flex.g-16{
    gap: 16px;
}
.content-flex.g-20{
    gap: 20px;
}


.small-heading-20{
    font-weight: 700;
    font-size: 20px;
    font-family: var(--font-Inter);
    color: var(--color-primary-blue);
    margin: 0;
}

.primary-btn{
    text-transform: capitalize;
    font-family: var(--font-Manrope);
    background-color: var(--color-orange-light);
    color:var(--color-white);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    border: none;
    padding: 15px 50px;
    line-height: 28px;
    border-radius: 10px;
    position: relative;
}
.primary-btn:hover{
    background-color: var(--color-orange-light);
    color:var(--color-white)
}
.primary-btn::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 100%;
    border-radius: 10px;
    background-color: #fa9836;
    transition: all 0.5s ease;
}
.primary-btn *{
    position: relative;
    z-index: 3;
}
.primary-btn:hover::after{
    width: 100%;
}


/*solution-service-sec*/

.solution-service-sec .container{
    max-width: 1303px !important;
}
.service-wrap{
    position: relative;
    padding-top: 71px;
    margin-bottom: 30px;
}
.service-wrap > img{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-width: 70%;
    width: 47.5%;
    z-index: -1;
}
.service-content{
    max-width: 816px;
    margin-left: auto;
    padding: 26px 20px 35px 46px;
    background: #ffffffa7;
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    margin-bottom: 29px;
   
}
.service-parah{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-parah *{
    line-height: 25px;
    color:var(--color-parah);
    margin: 0;

}
.service-lists{
    max-width: 631px;
    margin-left: auto;
}
.service-lists ul{
    display: flex;
    flex-wrap: wrap;
    gap: 24px 30px;
}
.service-lists ul li {
    min-width: 250px;
}
.service-lists ul li p{
    margin: 0;
    color:var(--color-Dark-Charcoal);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.innovation-wrap{
    display: flex;
    /* grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.innovation-card{
    width: 390px;
    padding: 0 35px;
    color:var(--color-parah)
}
.innovation-card img{
    width: 50px;
    height: 40px;
    /* object-fit: contain; */
    margin-bottom: 10px;
}
.innovation-content{
    font-size: 16px;
    line-height: 25px;
    margin-top: 8px;
}
/* .innovation-card:nth-child(2) img{
    height: 50px;
} */

@media(max-width:1300px){
    .service-lists {
        max-width: 400px;
        margin-left: auto;
    }
    .service-lists ul {
        flex-direction: column;
    }
    
}
@media(max-width:1200px){
    .service-content {
        max-width: 602px;
    }
    .innovation-content {
        font-size: 14px;
        line-height: 20px;
    }
    .innovation-card {
        padding: 0 10px;
    }
}
@media(max-width:992px){
    
}
@media(max-width:860px){
    .solution-service-sec {
        padding-top: 0px;
    }
    .service-wrap > img{
        position: unset;
        width: unset;
    }
    .service-content {
        max-width: 90%;
        padding: 20px;
        margin-top: -150px;
    }
    .service-lists {
        max-width: 100%;
    }
    .service-lists ul {
        flex-direction: row;
    }

}
@media(max-width:767px){
    .innovation-wrap{
        flex-direction: column;
    }
    .innovation-card{
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }
}
@media(max-width:575px){
    .service-wrap > img{
        max-width: 99%;
    }
    .service-lists ul{
        gap: 16px 20px;
    }
}

/*End solution-service-sec*/



/*tech-stack-sec*/
.tech-stack-sec{
    background-color: var(--color-blue-soft);
}
.tsc-img-wrap {
    position: relative;
}
.tsc-img-wrap a{
    position: absolute;
}
.tsc-img-wrap a.years{
    left: 0;
    top: 100px;
    pointer-events: none;
}
.tsc-img-wrap  a.view-more{
    bottom: 25px;
    right: 0px;
    animation: crescendo 1.5s alternate infinite ease-in;
}
.tsc-img-wrap  a.view-more:hover{
    animation-play-state: paused;
}
@keyframes crescendo {
    0%   {transform: scale(.9);}
    100% {transform: scale(1);}
  }
.tsc-img-wrap a{
    background-color: #F8F6FF;
    width: 290px;
    padding: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 24px 50px 0px rgba(39, 92, 166, 10%);
    border-radius: 24px;
    text-decoration: none;
    font-family: var(--font-Poppins);
    text-align: left;
    transition: all 0.5s ease;
}
.tsc-img-wrap a .icon{
    background-color: var(--color-orange-light);
    height: 64px;
    width: 64px;
    border-radius: 24px;
    display: grid;
    place-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 24px 50px 0 #0d0c3840;

}
.tsc-img-wrap a .tsc-txt{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.tsc-img-wrap a .tsc-txt > *{
    margin: 0;
}
.tsc-img-wrap a .tsc-txt p{
    font-size: 24px;
    color:#333333 ;
}
.tsc-img-wrap a .tsc-txt span{
    color:var(--color-gray-mid);
    font-size: 18px;
}
.tsc-img-wrap a.view-more:hover{
    background-color: var(--color-orange-light);
    color:#fff !important
}
.tsc-img-wrap a.view-more:hover .tsc-txt > *{
    color:#fff !important
}
.tsc-img-wrap a.view-more:hover .icon{
    background-color: var(--color-primary-red);
}

.tsc-parah *{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color:var(--color-parah)
}
.tsc-slider{
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* overflow: hidden; */
    position: relative;
    width: 100%;
}

.tech-swiper,
.tcs-logos {
    width: 90%;
    /* max-width: 100px; */
    margin-inline: auto;
    position: relative;
    height: 150px;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0)
    );
  }
  
  .tcs-logos .logo {
    width: 280px;
    height: 120px;
    background-color: var(--color-white);
    box-shadow: 5px 8px 10px 0px rgba(39, 92, 166, 7%);
    border-radius: 10px;
    display: grid;
    place-content: center;
    position: absolute;
    left: max(calc(280px * 8), 100%);
    animation-name: scrollLeft;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc( (15s / var(--quantity)) * (var(--position) - 1) * -1) !important;

  }
  .tech-swiper .logo {
    width: 280px;
    height: 120px;
    background-color: var(--color-white);
    box-shadow: 5px 8px 10px 0px rgba(39, 92, 166, 7%);
    border-radius: 10px;
    display: grid;
    place-content: center;
  

  }
  .tech-swiper .swiper-slide{
    width: 280px !important;
  }
  .tcs-logos .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.tech-swiper  .swiper-wrapper{
    transition-timing-function : linear;
  }
  

  @keyframes scrollLeft {
    to {
      left: -280px;
    }
  }

  .tcs-logos.right-side .logo{
    left: unset;
    right: max(calc(280px * 8), 100%);
    animation-name: scrollRight;
  }
  @keyframes scrollRight {
    to {
      right: -280px;
    }
  }


  @media(max-width:575px){
    .tsc-img-wrap a {
        padding: 15px;
    }
    .tsc-img-wrap a.years {
        top: 10px;
    }
    .tsc-img-wrap a.view-more{
        bottom: 10px;
    }
    .tsc-img-wrap a .icon{
        height: 40px;
        width: 40px;
        border-radius: 14px;
    }
    .tsc-img-wrap a img{
        width: 23px;
    }
    .tsc-img-wrap a .tsc-txt span {
        font-size: 14px;
    }
    .tsc-img-wrap a .tsc-txt p {
        font-size: 18px;
    }
    .tsc-img-wrap a {
        width: 214px;
    }
  }
/*End tech-stack-sec*/


/*trans-business-sec*/
.tran-business-sec{
    background-image: url(../img/transform-business-bg.png);
    background-repeat: no-repeat;
}
.trans-business-head{
    margin-bottom: 30px;
}
.trans-business-head .parah{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.business-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.business-details > *{
    flex-basis: 48%;
}
.business-list-inner{
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.business-list-inner .left-img{
    height: 168px;
    width: 168px;
}
.business-content *{
    margin: 0;
}
.business-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.business-img{
    height: 168px;
    width: 168px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.8);
    transition: all 0.5s ease;
}
.business-list:hover .business-img{
    transform: scale(1);
}
.business-cricle-out{
    position: absolute;
    height: 168px;
    width: 168px;
    z-index: 1;
    transition: transform 0.5s ease;
    /* border: 1px solid #525460;
    border-top: 1px solid var(--color-orange-light);
    border-radius: 100px; */
    background-image: url(../img/outer-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate 5s infinite linear;
    -webkit-animation: rotate 5s infinite linear; 
    animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) * -1) !important;
    -webkit-animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) * -1) !important;

}

@keyframes rotate{
  
    from {
      -webkit-transform: rotate(0deg) ;
      -moz-transform: rotate(0deg) ;
      -ms-transform: rotate(0deg) ;
      -o-transform: rotate(0deg) ;
      transform: rotate(0deg) ;
    }
    to {
          -webkit-transform: rotate(360deg) ;
          -moz-transform: rotate(360deg) ;
          -ms-transform: rotate(360deg) ;
          -o-transform: rotate(360deg) ;
          transform: rotate(360deg) ;
      }
  
}
  .business-cricle-in{
    position: absolute;
    height: 120px;
    width: 120px;
    /* top: 50%;
    left: 50%;
    transform: translate(); */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/inner-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotateReverse 5s infinite linear;
    -webkit-animation: rotateReverse 5s infinite linear; 
    animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) * -1) !important;
    -webkit-animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) * -1) !important;
}

.business-cricle-in::before{
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url(../img/circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 13px;
    bottom: -5px;
    
  }
  .business-cricle-in::after{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-image: url(../img/circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 12px;
    top: 4px;
  }

@keyframes rotateReverse{
  
    from {
      -webkit-transform: rotate(0deg) ;
      -moz-transform: rotate(0deg) ;
      -ms-transform: rotate(0deg) ;
      -o-transform: rotate(0deg) ;
      transform: rotate(0deg) ;
    }
    to {
          -webkit-transform: rotate(-360deg) ;
          -moz-transform: rotate(-360deg) ;
          -ms-transform: rotate(-360deg) ;
          -o-transform: rotate(-360deg) ;
          transform: rotate(-360deg) ;
      }
  
}


.business-details-swiper{
    position: relative;
    padding-bottom: 70px;
    overflow-x: hidden;
}
@media(max-width:1200px){
    .business-details{
        gap: 12px;
    }
	#masthead #mega-menu-menu-1 > li:last-child{
		margin-left: 10px;
	}
}
@media(max-width:992px){
    .business-details{
        flex-direction: column;
    }
}
@media(max-width:575px){
    .business-list-inner{
        flex-direction: column;
        align-items: center;
    }
    .business-content{
        text-align: center;
    }
}
/*End trans-business-sec*/



/*Case studies sec*/
.case-studies-sec{
    background-color: var(--color-blue-soft);
    padding: 0 0;
}
.CS-wrapper{
    display: grid;
    grid-template-columns: 650px 1fr;
}
.CS-title{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 50px;
}
.CS-swiper{
    width: 100%;
    overflow: hidden;
    padding: 65px 20px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0));
}
.CS-swiper .item{
    border-radius: 32px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0px 20px 50px 0px rgba(39, 92, 166, 10%), 0px 0px 0px 0px rgba(39, 92, 166, 10%);
}
.CS-swiper .item a{
    text-decoration: none;
}
.CS-swiper .item img{
    height: 229px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.5s ease;
}
.CS-swiper .item:hover img{
    scale:1.2;
}
.CS-swiper .item .parah{
    padding: 64px;

}
.CS-swiper .item .parah p{
    line-height: 160%;
    margin: 0;
}

@media(max-width:1650px){
    .CS-wrapper{
        grid-template-columns: 398px 1fr;
    }
    .CS-swiper .item .parah{
        padding: 40px 30px;
    }
}
@media(max-width:767px){
    .CS-wrapper{
        grid-template-columns:1fr;
    }
    .CS-title{
        justify-content: center;
        text-align: center;
    }
    .CS-swiper{
        padding-top: 0;
    }
}
/*End case studies */


/*testimonial-sec*/
.testimonial-sec .common-head{
    max-width: 650px;
    margin: 0 auto 38px;
    text-align: center;
}
.t_content-wrap{
    padding: 50px 30px 100px;
    background-color: #2222220f;
}
.t_content{
    font-family: var(--font-Raleway);
    text-align: center;
    position: relative;
    padding: 0 30px;
}
.t_content::after,
.t_content::before{
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    background-image: url(../img/Quote.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.t_content::before{
    top: -30px;
    left: 0;
    rotate: 180deg;
}
.t_content::after{
    left: unset;
    right: 0;
    bottom: -30px;
    
}
.t_content * {
    margin: 0;
    font-size: 16px;
    color:#222222;
    line-height: 24px;

}
.t_pro_image{
    height: 120px;
    width: 120px;
    border-radius: 130px;
    overflow: hidden;
    margin: 0 auto 20px;
}
.t_profile{
    margin-top: -60px;
    text-align: center;
}
.t_pro_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.t_name{
    font-family: var(--font-Montserrat);
    font-weight: 800;
    text-transform: capitalize;
    color:#222222;
    font-size: 20px;
    margin-bottom: 5px;
}
.t_info{
    font-family: var(--font-Raleway);
    font-size: 16px;
    line-height: 24px;
    color:var(--color-primary-blue);
}
.testimonials-carousel .owl-item:not(.center){
    opacity: 0.3;
    scale: 0.93;
}
/*End testimonial-sec */



/*Blog sec*/
.blog-sec{
    padding: 0 ;
}
.blog-sec .container-full{
    position: relative;
}
.blog-sec .common-head{
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 9;
}
.blogSwiper{
    width: 100%;
    overflow: hidden;
    height: 600px;
}
.blogSwiper .item > img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    offset-position: center;
}
.blogSwiper .item {
    position: relative;
}
.blogSwiper .item:after{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #000000a5;
}
.blogSwiper .item .parah{
    padding: 38px 38px 0;
    position: absolute;
    bottom: 58px;
    left: 0;
    z-index: 3;
    max-height: 125px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.blogSwiper .item:hover .parah{
    max-height: 500px;
    transition: all 1.5s ease;
}
.blogSwiper .item:hover .parah > p{
    display: -webkit-box;             
    -webkit-line-clamp: 3;      
    line-clamp: 3;          
    -webkit-box-orient: vertical;     
    overflow: hidden;                 
    text-overflow: ellipsis;   
}
.blogSwiper .item .parah::after{
    content: '';
    position: absolute;
    width: 168px;
    height: 3.67px;
    background-color: var(--color-primary-red);
    top: 24px;
}
.blogSwiper .item .parah > *{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color:#fff;
    margin: 0;
}

.blogSwiper .item .parah a span,
.blogSwiper .item .parah a{
    color:var(--color-pinkish-red) !important;
    text-transform: capitalize;
    text-decoration: none;
}
.blogSwiper .item .parah a img{
    transition: all 0.5s ease;
}
.blogSwiper .item .parah a:hover{
    text-decoration: underline;
}
.blogSwiper .item .parah a:hover img{
    transform: translateX(35px);
}

/*End Blog Sec*/


/*accelerate-business-sec*/
.accelerate-business-sec{
    position: relative;
    background-color: var(--color-blue-soft);
}
.accelerate-business-sec > img{
    position: absolute;
    left: 0;
    top: 22%;
    z-index: 1;
    width: 40%;
    /* background-image: url(../img/accelerate-bg.png);
    background-repeat: no-repeat;
    background-size: 700px;
    background-repeat: no-repeat;
    background-position: left center; */
}
.accelerate-business-sec  .container{
    position: relative;
    z-index: 3;
}
.ab_wrap .common-head{
    margin-bottom:45px
}
.techstack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.techstack-list > * {
    flex: 1 1 calc(33.3% - 32px); /* Adjusts for the gap size */
    box-sizing: border-box; /* Ensures padding and borders don’t affect width */
}
.techstack{
    border:1px solid rgba(25, 24, 37, 0.1);
    border-radius: 32px;
    background-color: var(--color-white);
    padding: 32px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 169px;
    transition: all 0.5s ease;
    text-align: center;
}
.techstack p{
    font-size: 15px;
    line-height: 160%;
}
.techstack .line{
    display: inline-block;
    width: 42px;
    height: 2px;
    background-color: var(--color-orange-light);
}
.techstack:hover{
    background-color: var(--color-orange-light);
}
.techstack:hover svg path{
    stroke: var(--color-white);
    fill: var(--color-white);
}
.techstack:hover p{
    color:var(--color-white)
}
.techstack:hover .line{
    background-color: var(--color-white);
}
@media(max-width:1200px){
    .accelerate-business-sec > img {
        width: 80%;
        top: 13%;
    }
}
@media(max-width:767px){
    .techstack-list > * {
        flex: 1 1 calc(50% - 32px); /* Adjusts for the gap size */
        box-sizing: border-box; /* Ensures padding and borders don’t affect width */
    }
}
@media(max-width:575px){
    
    .techstack-list{
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .techstack{
        flex-basis: 48%;
        padding: 32px 10px;
        
    }
    .techstack p {
        font-size: 15px;
    }
}
/*end accelerate-business-sec*/


/*Footer*/
footer{
    background-image: url(../img/footer-bg-new.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    padding-top: 00px;
    padding-bottom: 60px;
}
footer .container{
    position: relative;
    z-index: 2;
}
footer::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url(../img/footer-top-shape-new.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
}
body:not(.home)   footer::before{
 
    mix-blend-mode: plus-lighter;
}

.iso-con{
    /* max-width: 1245px; */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 3;
    /* position: absolute;
    z-index: 3;
    top: 10%; */
}
.iso-wrap{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 50px;
    background: linear-gradient(120deg, #E2EEFF, #E2EEFF 63%, #EA2127 calc(63% + 1px), #EA2127 100%);
}
.iso-wrap .iso-left{
    flex-basis: 60%;

}
/* .iso-wrap .iso-left h5{
    text-wrap: balance;
} */
.iso-wrap .iso-right{
    flex-basis: 35%;
}

.iso-wrap .parah p{
    margin: 0;
}

.footer-wrap{
    margin-top: 35px;
    color:#A5B0BD;
    font-family: var(--font-DMsans);
    padding-bottom: 21px;
    border-bottom: 1px solid #b4cae243;
}
.footer-wrap .footer-heading{
    color:#fff;
    text-transform: capitalize;
    font-size: 20px;
    font-family: var(--font-DMsans);
    font-weight: 700;
    margin-bottom: 24px;
}
.footer-wrap ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer-wrap *{
    line-height: 25px;
    margin: 0;
}
.footer-wrap ul li a{
    color:#A5B0BD;
    text-transform: capitalize;
    text-decoration: none;
    font-family: var(--font-Inter);
}
.footer-wrap ul li a:hover{
    color:var(--color-orange-light)
}
.footer-wrap ul li{
    margin-bottom: 15px !important;
}
.social-links{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-links li a i{
    color:var(--color-orange-light);
}
.social-links li a{
    font-size: 20px;
    display: inline-block;
    transition: all 0.5s;
}
.social-links li a:hover{
    font-size: 25px;
    transform: rotate(360deg) scale(1.3);
}
.footer-logo{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-wrap ul.contact_us li{
    display: flex;
    align-items: flex-start;
    gap:6px;
    font-family: var(--font-DMsans) !important;
    margin-bottom: 20px !important;
}

.contact_us li a{
    font-family: var(--font-DMsans) !important;
}
.contact_us li i{
    color:var(--color-orange-light);
    font-size: 20px;
   
}
.contact_us li a{
    display: inline-block;
}
.contact_link.address{
    font-size: 18px !important;
}
.copy-right{
    margin-top: 26px;
}
.copy-right *{
    color:#C5D4FB;
    text-decoration: none;
    font-family: var(--font-Inter);
    font-size: 14px;
  
}
.copy-right span{
    opacity: 0.75;
}
.copy-right a{
    opacity: 1 !important;
}
.copy-right a:hover{
    opacity: 1 !important;
    color:var(--color-orange-light);
}

.fw-row{
    display: grid;
    grid-template-columns: 298px 150px 95px 1fr;
    gap: 55px;
}
@media(max-width:1250px){
    .fw-row{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .contact_col{
        grid-column: span 3;
    }
}
@media(max-width:1200px){
    .iso-wrap{
        background: linear-gradient(166deg, #E2EEFF, #E2EEFF 58%, #EA2127 calc(58% + 1px), #EA2127 100%);    
    }
}



@media(max-width:992px){
    .iso-wrap{
        flex-direction: column;
    }
    .iso-left{
        text-align: center;
    }
    .iso-right > *{
        justify-content: center !important;
    }
    .iso-wrap{
        padding: 20px 20px;
    }
}
@media(max-width:575px){
    .fw-row{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact_col{
        grid-column: unset !important;
    }
    .iso-right > *{
        flex-direction: column;
    }
    
}
/*End Footer*/











/**common-head**/
.common-head .sub-heading{
    font-size: 23px;
    color:var(--color-primary-red);
    letter-spacing: 6px;
    text-transform: uppercase;
}
/**End common-head**/


@media(max-width:1200px){
    .heading-1{
        font-size: 40px;
    }
    .fs-24 {
        font-size: 18px;
    }
    
    
}
@media(max-width:767px){
    .heading-1{
        font-size: 30px;
    }
    .heading-2 {
        font-size: 36px;
    }
}


  .swiper-pagination .swiper-pagination-bullet{
    width: 5px;
    height: 5px;
    background-color: rgb(208, 208, 208);
    opacity: 1;
    padding: 6px;
  }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #103B6D;
  }


  .transBottomToTopPerspective{
    perspective: 1000px;
  }
  .transBottomToTop {

    /* animation: noTransformAnim linear forwards normal;
    animation-timeline: view(); */
    transform: rotateX(40deg);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
  }

  @-webkit-keyframes noTransformAnim {
    50% { 
      transform: none; 
      opacity: 1; 
    }
    100% { 
      transform: none; 
      opacity: 1; 
    }
  }
  
  @keyframes noTransformAnim {
    50% { 
      transform: none; 
      opacity: 1; 
    }
    100% { 
      transform: none; 
      opacity: 1; 
    }
  }


.section-anime-expand{

    animation: section_keyframes 2s linear forwards;
    animation-timeline: view(block);
    animation-range: cover 0% cover 50%; 
}

@keyframes sectionExpand {
    from {
        transform: translateY(100px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
  }



 .swiper-scrollbar{
    max-width: 560px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 0;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.swiper-scrollbar::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #BABABA;
    top: 0;
}
.swiper-scrollbar .swiper-scrollbar-drag{
    height: 10px;
    background-color: var(--color-orange-bright);
    top: -4px;
    border-radius: 0px;
    z-index: 9;
}
.main-nav ul{
	list-style: none;
}
.main-nav .dashicons{
	color: var(--color-orange-light);
	margin-top: 5px;
}
.main-nav .menu > li > a span{
	font-weight: 600;
	text-transform: uppercase;
	font-size: 17px;
}

.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 .menu > li > a {
	display: flex !important;
    align-items: flex-start;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 .menu > li{
	padding-bottom: 20px;
}
.techstack-list .techstack .white-img, .techstack-list .techstack:hover .colored-img{
	display: none;
}
.techstack-list .techstack:hover .white-img{
	display: block;
}


  
