:root {
  --color-primary: #863DFF;
  --color-black: #000;
  --color-white: #fff;
  --bg-primary-gradient-to: #A56EFF;
  --bg-primary-gradient-from: #8a56e017;
  --color-secondary: #070A26;
  --bg-color-transparent: transparent;
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
    font-family: 'Manrope', sans-serif;
}
.gradient-bar {
    background: linear-gradient(90deg, #4F0FB9, #863DFF, #4F0FB9);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
@keyframes slide-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}
.animate-slide-left {
    animation: slide-left 20s linear infinite;
}
.animate-slide-right {
    animation: slide-right 20s linear infinite;
}
/* Custom scrollbar styling */
.overflow-x-auto::-webkit-scrollbar {
    height: 8px;
}
.overflow-x-auto::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}
.code-brackets {
    transform: perspective(100px) rotateY(-15deg);
}
.gear {
    animation: spin 8s linear infinite;
}
/* Mobile menu animation */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.open {
    transform: translateX(0);
}
.hover-effect-primary{
    overflow:hidden;
}
.hover-effect-primary button {
    position: relative;
    display: block;
    overflow: hidden;
}
.hover-effect-primary .primary-color-bg:nth-child(1) {
    width: 4.5rem;
    height: 3.5rem;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
}
.hover-effect-primary .primary-color-bg:nth-child(1) svg{
    transform: translateX(0%);
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
}
.hover-effect-primary .primary-color-bg:nth-child(3){
    width: 0;
    height: 0;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
}
.hover-effect-primary .primary-color-bg:nth-child(3) svg{
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
}
.hover-effect-primary:hover .primary-color-bg:nth-child(1) {
    width: 0;
    height: 0;
}
.hover-effect-primary:hover .primary-color-bg:nth-child(1) svg{    
    transform: translateX(-120%);
}
.hover-effect-primary:hover .primary-color-bg:nth-child(3){
    width: 4.5rem;
    height: 3.5rem;
    transform: translateX(0%);
}
.hover-effect-primary:hover .primary-color-bg:nth-child(3){
    transform: translateX(0%)
}
.hover-effect-primary .before-hover{
    display: inline-block;
    transition: transform .3s;
}
.hover-effect-primary .after-hover{
    position: absolute;
    width: 100%;
    display: inline-block;
    transition: bottom .3s;
    bottom: -150%;
    left: 0px;
    right: 0%;
}
.hover-effect-primary:hover .before-hover{
    transform: translateY(-150%);
}
.hover-effect-primary:hover .after-hover{
    bottom: 25%;
}
.hover-effect-secondary{
    overflow:hidden;
    position: relative;
}
.hover-effect-secondary span:nth-child(1){
    transform: translateY(0%);
    transition: transform .3s;
    display: inline-block;
}
.hover-effect-secondary span:nth-child(2){
    position: absolute;
    width: 100%;
    display: inline-block;
    transition: bottom .3s;
    bottom: -150%;
    left: 0px;
    right: 0%;
}
button:hover .hover-effect-secondary span:nth-child(1){
    transform: translateY(-150%);
}
button:hover .hover-effect-secondary span:nth-child(2){
    bottom: 0;
}
.primary-color {
  color: var(--color-primary);
}
.primary-color-bg {
  background-color: var(--color-primary);
}
.primary-color-shadow {
  box-shadow: 0 10px 25px var(--color-primary);
}
.primary-color-text-hover:hover {
  color: var(--color-primary);
}
.primary-color-hover:hover{
  background-color: var(--color-secondary);
}
.primary-bg-hover:hover{
  background-color: var(--color-primary);
}
.hover-effect-primary:hover .primary-color-hover {
  background-color: var(--color-secondary);
}
.group-hover:hover .group-item-hover{
  color: var(--color-primary);
}
.bg-primary-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--bg-primary-gradient-to) 0%, var(--bg-primary-gradient-from) 100%);
}
.secondary-color {
  color: var(--color-secondary);
}
.secondary-color-bg  {
  background-color: var(--color-secondary);
}
.secondary-color-text-hover:hover {
  color: var(--color-secondary);
}
.white-bg-hover:hover{
    background-color: var(--color-white);
}
.white-text-hover:hover{
    color: var(--color-white);
}
.primary-text-hover:hover{
    color: var(--color-primary);
}
.secondary-bg-hover:hover{
    background-color: var(--color-secondary);
}
.bg-color-transparent{
  background-color: var(--bg-color-transparent);
}
/* Sub Menu */
.sub-menu svg {
    transform: rotate(270deg);
}
.sub-menu a:hover svg {
    transform: rotate(0deg);
}
/* Testtimonial */
.testimonial-slider .slick-slide {
    padding: 0 10px;
}
.testimonial-slider .slick-prev, 
.testimonial-slider .slick-next {
    left: inherit;
    top: -130px;
    right: 0;
    transform: translateY(100%);
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
    font-size: 54px;
    opacity: 1;
    width: 60px;
    height: 60px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    content: '' !important;
}
.testimonial-slider .slick-next {
    left: inherit;
    right: 160px;
}
.testimonial-slider .slick-prev {
    left: inherit;
    right: 240px;
}
.testimonial-slider .slick-prev::before{
    background-image: url('../images/arrow-left.png');
}
.testimonial-slider .slick-next::before{
    background-image: url('../images/arrow-right.png');
}
.ribbon-animate{
    background: #863DFF;
    border-radius: 100px;
    min-height: 612px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}
.horizontal-cta {
    background: #ffffff;
    border-radius: 100px;
    text-align: center;
    height: auto;
    transform: rotate(90deg);
    width: auto;
    padding: 30px;
    position: absolute;
    bottom: 100px;
    margin: auto;
    left: 0;
    right: 0;
    color: #863dff;
    font-weight: bold;
    text-transform: uppercase;
}
.horizontal-cta:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}
/* Unique Card */
.unique-related_card {
    border: 0.0625rem solid var(--color-white);
    border-radius: 0 6.5rem 0 0;
    padding: 2rem;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    position: relative;
}
.unique-related_card:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 0 6.5rem 0 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.5s ease;
}
.unique-related_card h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 0.0625rem solid var(--color-white);
    padding: 0 0 2rem;
}
.unique-related_card:first-child:after {
    transform: scaleY(1);
}
.unique-related_card:first-child h3,
.unique-related_card:first-child p {
    color: var(--color-secondary);
}
.unique-related_card:first-child h3{
    border-bottom: 0.0625rem solid var(--color-secondary);
}
/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(25px);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(25px);
  }
}
/* Spin Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Apply Floting Animation Element */
.floating {
  animation: float 3s ease-in-out infinite;
}
/* Apply Spin Animation Element */
.spin-slow {
  animation: spin 4s linear infinite;
}
/* Srevices Card */
.service-releted__card {
    background-image: url('../images/service-card.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 22rem;
    padding: 2.5rem;
    display: flex;
    position: relative;
    transform: translate(0);
    transition: transform 0.3s ease-in-out;
}
.service-releted__card:hover{
    transform: scale(1.1);
}
.service-releted__content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.service-releted__icon{
    margin-bottom: 1rem;
    border-bottom: .0625rem solid #fffc;
    padding-bottom: 2.5rem;

}
.service-releted__title-wrap {
    max-width: 14rem;
}
.service-releted__title-wrap h6 {
    letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
}
.service-releted__rich {
    min-height: 2rem;
}
.w-richtext:before, .w-richtext:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}
.service-releted__rich p {
    color: var(--color-white);
}
.icon-hover a:hover svg {
    fill: var(--color-secondary);
}
header ul li a, 
header ul li button:not([type="submit"]){
    text-transform: uppercase;
    font-weight: 700;
}
header ul .sub-menu .sub-menu-items a, 
header ul .sub-menu .sub-menu-items button:not([type="submit"]){
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.4rem 0 !important;
}
header ul .sub-menu .sub-menu-items a span, 
header ul .sub-menu .sub-menu-items button:not([type="submit"]){
    font-size: 1rem !important;
}
/* Request a quote */
.request-quote_col:first-child{
    /* padding: 0 8rem 0 0; */
    max-width: 55rem;
}
.request-quote_col h2{
    font-size: 2.4rem;
    margin: 0 0 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}
.request-quote_col h3{
    font-size: 2rem;
    margin: 0 0 0.8rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.request-quote_col h4{
    font-size: 1.2rem;
    margin: 0 0 2rem;
    font-weight: 500;
    color: red;
}
.request-quote_col p{
    font-size: 1.2rem;
    margin: 0 0 1.5em;
}
.col-after ul li a {
    text-transform: capitalize;
}
.main-mobile-text-base{
    text-transform: uppercase;
}
/* Packages */
.package {
    /* padding: 10px 0; */
    flex: 0 0 auto;
    transition: all 0.3s ease-in-out;
    text-align: revert;
    margin-top: 80px;
    border: 2px solid #863dff;
    border-radius: 15px;
    background: transparent;
    box-shadow: 0px 0px 5px 1px #863dff;
    width: 100%;
    height: max-content;
}
.package .package_name {
    padding: 40px 30px;
}
.package .package_name .heading {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.4rem;
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1rem;
}
.package .package_name .title {
    font-size: 0.8rem;
    line-height: 2.5vh;
    color: #dde0ff;
    margin: 5px 0;
    text-align: center;
}
.package .price {
    padding: 10px;
    width: 100%;
    text-align: center;
}
.package .price p {
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 1px #863dff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    align-items: center;
}
.package .price p span {
    margin-right: 10px;
}
.package .benefits {
    padding: 0.7rem;
    list-style: none;
    display: block;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    padding: 0 1.6rem;
    margin-bottom: 2rem;
    margin-right: 1.2rem;
}
.package .benefits li {
    position: relative;
    font-size: 0.8rem;
    color: #dde0ff;
    list-style: none;
    padding-left: 1.8rem;
    margin: 1rem 0;
    text-transform: capitalize;
}
.package .benefits li::before {
    content: "";
    background: url('../images/icons/check_icon_purple.svg');
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.package .highlight_benefit {
    background-color: #863dff;
    width: 100%;
    padding: 2px 0;
    text-align: center;
    margin-bottom: 1.2rem;
}
.package .highlight_benefit p {
    color: #dde0ff;
    margin: 0;
    position: relative;
    padding-left: 1.8rem;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
}
.package .highlight_benefit p::before {
    content: "";
    background: url('../images/icons/check_icon_lightblue.svg');
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.package .bottom {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.package .bottom .left_column button {
    color: #dde0ff;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #863dff;
    display: inline-block;
    justify-content: center;
    padding: 0.3rem 2rem;
    border-radius: 25px;
    margin: 0;
    background: transparent;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.package .bottom .left_column button .fa-shopping-cart {
    color: #863dff;
    margin-right: 1rem;
}
.package .bottom .left_column button:hover .fa-shopping-cart {
    color: #fff;
}
.package .bottom .right_column p {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1rem;
    color: #dde0ff;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    cursor: pointer;
}
.package .bottom .right_column .live_chat {
    padding-left: 25px;
    font-size: 0.6rem;
    line-height: 2.5vh;
    color: #863dff;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 5px;
    opacity: 1;
}
.package .bottom .right_column .live_chat i {
    color: #863dff;
}
.package:hover {
    transform: scale(1.05);
}
.package:hover .price p {
    color: #dde0ff;
    -webkit-text-stroke: 1px #dde0ff;
}
.package .bottom .left_column button:hover {
    background-color: #863dff;
}
.package .benefits::-webkit-scrollbar-thumb {
    background: #070a26;
}
.package .benefits::-webkit-scrollbar-track {
    background: #863dff;
}
.package .benefits::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
/* Blogs */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.blog-image {
    position: relative;
    overflow: hidden;
    height: 15rem;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-content {
    padding: 2.5rem;
    background: var(--color-white);
    color: #fff;
}
.blog-content span{
    display: block;
    margin: 0 0 0.8rem;
}
.blog-title {
    margin-bottom: 0;
}
.blog-title a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.blog-card:hover .blog-title a {
    color: var(--color-secondary);
}
.blog-content_detail h2{
    font-size: 2rem;
    margin: 1rem 0 0;
}
.blog-content_detail h3{
    font-size: 1.5rem;
    margin: 1rem 0 0.2rem;
}
.blog-content_detail p{
    font-size: 1rem;
    margin: 0 0 2rem;
}
.blog-content_detail ul {
    list-style: disc;
    padding-left: 25px;
    margin: 0 0 0.4rem;
}
.blog-content_detail ol {
    list-style: decimal;
    padding-left: 25px;
    margin: 0 0 0.4rem;
}
@media screen and (max-width:767px) {
    .blog-content_detail h2,
    .blog-content_detail h3{
        font-size: 1.4rem  
    }
}
/* Specialize */
.card-gradient {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
}
.cms-card img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.cms-card:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(196, 181, 253, 0.5));
    transform: scale(1.05);
}
/* Contact */
.infoRow .infoWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.infoRow .infoCol {
    padding: 3rem 0;
}
.infoRow .infoCol:first-child {
    padding-top: 0;
}
.infoRow .infoCol+.infoCol {
    border-top: 0.065rem solid #fff;
}
.infoRow .infoCol h3 {
    color: #fff;
    font-weight: 600;
    font-size: 3rem;
    margin: 0px 0px 1rem 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.infoRow .infoCol i {
    font-size: 3rem;
    line-height: 3.2rem;
    color: #fff;
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    text-align: left;
    margin: 0 1rem 0 0;
}
.infoRow .infoCol p, .infoRow .infoCol a {
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #fff;
    margin: 0;
    padding: 0;
}
/* Animation */

@keyframes loop {
  0% { transform: translate3D( 0%, 51%, 0 ) rotate(0deg); }
  5% { transform: translate3D( 8%, 31%, 0 ) rotate(18deg); }
  10% { transform: translate3D( 22%, 13%, 0 ) rotate(36deg); }
  15% { transform: translate3D( 40%, 2%, 0 ) rotate(54deg); }
  20% { transform: translate3D( 46%, 21%, 0 ) rotate(72deg); }
  25% { transform: translate3D( 50%, 47%, 0 ) rotate(90deg); }
  30% { transform: translate3D( 53%, 80%, 0 ) rotate(108deg); }
  35% { transform: translate3D( 59%, 98%, 0 ) rotate(125deg); }
  40% { transform: translate3D( 84%, 89%, 0 ) rotate(144deg); }
  45% { transform: translate3D( 92%, 68%, 0 ) rotate(162deg); }
  50% { transform: translate3D( 99%, 47%, 0 ) rotate(180deg); }
  55% { transform: translate3D( 97%, 21%, 0 ) rotate(198deg); }
  60% { transform: translate3D( 80%, 7%, 0 ) rotate(216deg); }
  65% { transform: translate3D( 68%, 25%, 0 ) rotate(234deg); }
  70% { transform: translate3D( 59%, 41%, 0 ) rotate(251deg); }
  75% { transform: translate3D( 50%, 63%, 0 ) rotate(270deg); }
  80% { transform: translate3D( 38%, 78%, 0 ) rotate(288deg); }
  85% { transform: translate3D( 21%, 92%, 0 ) rotate(306deg); }
  90% { transform: translate3D( 3%, 79%, 0 ) rotate(324deg); }
  100% { transform: translate3D( 0%, 51%, 0 ) rotate(360deg); }
  
}
.ball {
  --delay:0s;
  --size:0.4;
  --speed: 20s;
  aspect-ratio:1;
  width:calc( 100% * var(--size) );
  background: linear-gradient(259.53deg, #863DFF 6.53%, #A56EFF 95.34%);
  filter:blur( 10vw );
  border-radius:50%;
  position:absolute;
  top:0;
  left:0;
  animation: loop var(--speed) infinite linear;
  animation-delay: var(--delay);
  transform-origin: 50% 50%;
  opacity:0.6;
  z-index: -1;
}
/* Case Studies */
.case-img_box {
    position: relative;
    padding-bottom: 1rem;
}
.case-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    border-radius: 1rem;
}
.case-tags {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    gap: .8rem;
    border-radius: 1rem;
    padding: 1.6rem;
}
.case-tags span {
    display: inline-block;
    border-radius: 3.1rem;
    background: var(--color-secondary);
    box-shadow: 0 2px 18.4px 0 rgba(32, 48, 71, .13);
    padding: .9rem 1.5rem;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .44px;
}
.case-category_items {   
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    gap: .8rem;
}
.case-category_item {
    color: #838da7;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    gap: .8rem;
}
.case-category_item::after {
    content: '';
    display: block;
    width: .4rem;
    min-width: .4rem;
    height: .4rem;
    border-radius: 100%;
    background: #838da7;
}
.case-category_item:last-child:after {
    display: none;
}
.case-title {
    line-height: 1.3;
    font-size: 4rem;
    margin-bottom: .8rem;
    display: block;
    font-weight: 700;
    color: var(--color-white);
}
.case-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    margin: 0 0 1.2rem;
}
/* Career */
.career-box_card {
    padding: 2rem;
}
.career-box_card h4 {
    font-size: 1.4rem;
}
.career-box_card a {
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--color-white);
}
.career-box_card:nth-child(even) {
    background: var(--color-white);
}
.career-box_card:nth-child(even) h2,
.career-box_card:nth-child(even) p,
.career-box_card:nth-child(even) a {
    color: var(--color-secondary);
}
/* Animation */
#changingText {
    color: var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    animation: cursoranim 0.5s linear infinite;
}
@keyframes cursoranim {
  50% {
    border-right: 3px solid #e26c452f;
  }
}
.glow-text {
    animation: pulseGlow 5s infinite alternate;
}
@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 
        0 0 5px rgba(134, 61, 255, 0.8),
        0 0 10px rgba(134, 61, 255, 0.7),
        0 0 20px rgba(134, 61, 255, 0.6);
    }
    50% {
        text-shadow: 
        0 0 10px rgba(134, 61, 255, 1),
        0 0 20px rgba(134, 61, 255, 0.9),
        0 0 40px rgba(134, 61, 255, 0.8);
    }
}
/* Services */
.pinned-images-wrap {
    overflow: hidden;
}
.pinned-images-wrap {
    padding: 5rem 2rem !important;
}
.pinned-images-inner{
    display: flex;
    flex-wrap: nowrap;
}
.pinned-images h2{
    font-size: 3rem;
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem;
}
.pinned_service {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    margin-right: 5rem;
    border-radius: 1rem;
    width: 800px;
    height: auto;
    padding: 3rem 5rem;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.pinned_service:hover{
    border-color: #8b5cf6;
}
.pinned_service h3{
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem;
}
.pinned_service p{
    font-size: 1.2rem;
    color: var(--color-white);
    text-align: left;
    margin: 0 0 1rem;
}
.pinned-icon_box {
    margin: 0 0 1rem;
}
.pinned-icon_box img {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    border-radius: 0.55rem;
    background-color: rgba(124, 58, 237, 0.3);
}
.card-gradient-active {
    background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 100%);
    border: 1px solid #8b5cf6;
}
.card-gradient-active p{
    color: var(--color-white);
}
/* Ticker */
.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 12s linear infinite;
}
.ticker-item {
    padding-right: 4rem; /* space between repeats */
    font-size: 1rem;
    font-weight: 500;
}
/* Smooth continuous animation */
@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Media Queries */
@media screen and (min-width: 1200px) {
    .col-after {
        position: relative;
    }
    .col-after:after {
        content: "";
        border-left: 1px solid #ffffff6e;
        left: -70px;
        height: 100%;
        width: auto;
        position: absolute;
        top: 0;
    }
    
}
@media  screen and (max-width: 1500px) {
    .cta-sec {
        flex-wrap: wrap;
    }
    .cta-sec .part-1 {
        width: 70%;
    }
    .cta-sec .part-2 {
        width: 30%;
    }
    .cta-sec .part-3 {
        width: 100%;
        flex-direction: row;
        min-height: auto;
    }
    .cta-sec .part-3 img {
        max-width: 100px;
        height: auto;
    }
    .cta-sec .part-3 .horizontal-cta {
        transform: rotate(0deg);
        position: relative;
        bottom: 0;
        margin: 0;
        width: auto;
        height: 100px;
        padding: 0 4rem;
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: bold;
    }
    #web-hero h1.main-mobile-text-base {
        font-size: 4rem;
    }
    #web-hero .max-w-md {
        max-width: 20rem;
    }
    #web-hero{
        padding: 90px 0;
    }
    .unique-sec{
        background-size: cover !important;
    }
    .service-releted__card{
        padding: 2rem !important;
    }
    .leading-tight{
        font-size: 3rem !important;
    }
    #popup .right-column{
        height: 95%;
    }
}
@media  screen and (max-width: 1700px) and (min-width:1500px) {
    .min-\[1500px\]\:lg\:mx-32 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }
    .min-\[1400px\]\:gap-\[10rem\] {
        gap: 6rem !important;
    }
}
@media  screen and (max-width: 1300px) {
    .cta-sec {
        border-radius: 10px;
    }
    .cta-sec .part-1 {
        width: 100%;
    }
    .cta-sec .part-2 {
        width: 100%;
    }
    .cta-sec .part-3 {
        width: 100%;
    }
    .cta-sec .part-3 .horizontal-cta {
        padding: 0 5rem;
        font-size: 1.2rem;
    }
}
@media  screen and (max-width: 1500px) and (min-width:1300px) {
        .col-after:after {
            left: -30px;
        }
}
@media  screen and (max-width: 1024px) and (min-width:1300px) {
    .min-\[1500px\]\:lg\:mx-32 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }
    .min-\[1400px\]\:gap-\[10rem\] {
        gap: 6rem !important;
    }
}
@media screen and (max-width: 1024px) {
    #web-hero {
        background: var(--color-primary);
    }
    #web-hero .mx-32 {
        flex-direction: column;
        display: flex;
        align-items: self-start;
    }
    #hero picture {
        background: #863dff;
        display: block;
        height: 100%;
    }
    #hero picture img{
        height: 1160px;
    }
    /* #hero .hero-mian-content {
        position: relative;
    } */
}
@media screen and (min-width: 767px) {
    /* Animated Section */
    .animated-section {
        animation: zoomSection 1s ease-in-out infinite alternate;
        transform-origin: center; /* scale from the center */
    }
    @keyframes zoomSection {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05); /* zoom in 5% */
        }
        100% {
            transform: scale(1);
        }
    }
    
}
@media  screen and (max-width: 767px) {
    .cta-sec .part-3 {
        display: none;
    }
    #services-scroll {
        height: auto !important;
    }
    #services-sticky {
        padding: 2rem 0;
    }
    #services {
        display: none;
    }
    .tab-btn span {
        display: none;
    }
    #puck {
        width: 60px;
    }
    .main-mobile-text-base{
        font-size: 3rem !important;
    }
    .mobile-text-base{
        font-size: 2rem !important;
    }
    .mobile-text-xs-base{
        font-size: 1.5rem !important;
    }
    #web-hero{
        background: var(--color-primary);
    }
    #web-hero .mx-32 {
        margin-left: 1rem;
        margin-right: 1rem;
        display: flex;
        flex-direction: column;
    }
    #web-hero img.absolute{
        display: none;
    }
    #web-hero .flex-col{
        width: 100%;
    }
    .service-releted__sec .mx-32 {
        margin-left: 2rem;
        margin-right: 2rem;
        gap: 3rem;
    }
    .service-releted__sec .w-full {
        margin: 2rem;
        max-width: fit-content;
    }
    .service-releted__sec .w-full .text-base {
        font-size: 2rem;
    }
    #web-hero {
        padding: 0;
    }
    .slick-list{
        padding: 0 20px !important;
    }
    .testimonial-slider .slick-slide {
        padding: 0 5px;
    }
    .service-releted__card {
        min-height: auto;
        padding: 1.5rem !important;
    }
    .request-quote_col h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .request-quote_col p {
        font-size: 1rem;
    }
    .animated-section .text-4xl {
        font-size: 1.6rem;
    }
    .inner-hero {
        padding: 0 25px;
    }
    .spin-slow{
        display: none;
    }
    .case-category_items {
        flex-direction: row;
        align-items: self-start;
        flex-wrap: wrap;
    }
    .case-tags {
        padding: 0.6rem;
        flex-wrap: wrap;
    }
    .case-tags span {
        padding: 0.6rem;
        font-size: 0.7rem;
    }
    .case-title {
        font-size: 2rem;
    }
    .case-card {
        gap: 3rem;
        padding: 40px 0;
    }
    .package{
        margin: 0;
    }
    #hero picture {
        padding: 0 0 30px;
    }
    #hero picture img{
        height: auto;
    }
    .hero-mian-content {
        background: var(--color-primary);
    }
    #popup .mt-auto {
        margin: 0;
        height: 100%;
    }
    .leading-tight{
        font-size: 1.5rem !important;
    }
    #about {
        padding: 3rem 0;
    }
    .circle-img {
        display: none;
    }
    #cms-section {
        padding: 3rem 1rem 0;
    }
    .animate-slide-left {
        animation: slide-left 5s linear infinite !important;
    }
    .animate-slide-right {
        animation: slide-right 5s linear infinite !important;
    }
    .proccess-related_sec .grid-cols-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .proccess-related_sec {
        padding: 2rem 1rem;
    }
    .proccess-related_sec .grid-cols-7 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .proccess-related_sec .grid-cols-7 .border-r p {
        margin: 0;
    }
    .proccess-related_sec .grid-cols-7 .border-r:nth-child(even) {
        border: none;
        padding: 6rem 0 0;
    }
    .proccess-related_sec .text-sm {
        font-size: 0.675rem;
        line-height: 0.85rem;
    }
    footer {
        margin: 0 !important;
    }
    .animated-section {
        margin: 30px 0 50px;
    }
    .hero-content p {
        font-size: 1rem !important;
    }
    .hero-content p.leading-relaxed {
        font-size: 0.8rem !important;
    }
    .pinned-images h2{
        font-size: 2rem;
    }
    .pinned-images-inner {
        display: none;
    }
    .pinned_service {
        width: 100%;
        height: auto;
        padding: 1.4rem;
        margin: 0 0 2rem;
    }
    .pinned_service h3 {
        font-size: 1.2rem;
        text-align: left;
    }
    .pinned_service p {
        font-size: 0.8rem;
    }
    .pinned-images-wrap .pinned_service_mobile p {
        margin: 0 0 1rem !important;
    }
    .pinned-images-wrap {
        padding: 4rem 2rem 0rem !important;
    }
    .pin-spacer {
        height: auto !important;
    }
    .pinned_service_mobile {
        margin: 0 !important;
    }
    .animated-section {
        margin-bottom: 0;
    }
    body h2 {
        font-size: 1.5rem !important;
    }
    #about h2 {
        font-size: 1.2rem !important;
    }
    #about p {
        font-size: 0.8rem;
    }
    .mobile-menu ul li a, 
    .mobile-menu ul li button {
        font-size: 1rem;
        padding: 0;
    }
    .mobile-menu ul li ul li a {
        font-size: 0.8rem;
        padding: 0;
    }
}