@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Primary Font */
    --primary-font: "Kanit", sans-serif;

    /* Global Colors */
    --color-primary: #9747FF;
    --color-secondary: #A9438E;
    --color-accent: #ffc107;
    --color-dark: #333333;
    --color-light: #CCCCCC;

    /* Global Gradient */
    --gradient-main: linear-gradient(135deg, #1D40EA, #D132F7);
}
html {
  scroll-behavior: smooth;
}

body{
    font-family: "Kanit", sans-serif;
    user-select: none;
}
.primary-clr{
    color: #9747FF;
}
p.normal-text {
    font-size: 17px;
    color: var(--color-light);
    font-weight: 400;
}
.body-text {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    line-height: 1.7;
}
.body-text.light {
    font-weight: 300;
}
.style-outline {
    color: #DDDDDD;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: #DDDDDD99;
}
.style-outline.big-txt{
    font-size: 200px;
    line-height: 1;
}

.btn-icon .btn-wrapper {
    display: flex;
    gap: 7px;
}
.btn-digi {
    color: #FFF;
    font-weight: 300;
    font-size: 15px;
    padding: 15px;
    border-radius: 0;
    line-height: 1.2;
    border: 1px solid #000;
    background: #000;
    text-decoration: none !important;
    transition: .5s all ease;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.btn-digi .btn-wrapper {
    position: relative;
    z-index: 2;
}
.btn-digi.btn-outline {
    background: transparent;
    color: var(--color-light);
    border-color: var(--color-light);
}
.btn-digi:hover {
    color: #FFF;
}
.btn-digi:hover::before{ left: 0% !important;transition: .5s all ease; }
.btn-digi::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    left: -100%;
    top: 0;z-index: 1;
    transition: .5s all ease;
}
.btn-digi .icon {
    transition: .3s all ease;
}
.btn-digi:hover .icon{
    filter: brightness(9);
    transition: 2s all ease;
}

.btn-digi.btn-circle {
    width: 160px;
    aspect-ratio: 1/1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent !important;
    border-color: #CCCCCC;
    color: var(--color-primary);
    z-index: 99;
}
.btn-digi.btn-circle:hover{
    color: #FFF
}

.btn-digi.btn-circle::before {
    left: -10%;
    bottom: -10%;
    top: auto;
    height: 0;
    width: 0;
    border-radius: 50%;
}
.btn-digi.btn-circle:hover::before {
    left: 0%;
    bottom: 0%;
    top: auto;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.pri-text {
    color: var(--color-primary);
}
.sec-text {
    color: var(--color-secondary);
}

.hero-section {
    height: 100vh;
    overflow: hidden;
}
.hero-section .slider-container {
    height: 100vh;
    overflow: hidden !important;
    position: relative;
  }
  
  .hero-section .slider-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 1s ease-in-out;
  }
  
  .hero-section .slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #f0f0f0;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  header {
    z-index: 99;
}
.hero-section .btn-border-bottom {
    position: absolute;
    right: 0;
    bottom: 40px;
}

.hero-section .container-fluid .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2em;
    color: #FFF;
}
section.hero-section img {
    max-width: 80%;
    width: 100%;
}
.hero-section .img-wrapper {
    text-align: right;
    margin-bottom: 50px;
}
.btn-border-bottom .icon img {
    width: 100%;
    max-width: 100%;
}
.gradient-border {
    border: 0;
    background: url('../imgs/btn-border.png') !important;
    background-size: 100% 100% !important;
}
.hero-section p.normal-text {
    max-width: 85%;
    margin-bottom: 25px;
}

.py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
}
.abt-sec h2.h2 {
    padding-right: 1.8em !important;
}

section{ position: relative;overflow: hidden;}
img.dec-img {
    position: absolute;
    right: 0;
    z-index: -1;
    width: 100%;
    height: auto;
    max-width: 33%;
    top: 0;
}
img.dec-img2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 23%;
    object-fit: contain;
    object-position: right;
}
a.btn.btn-border-bottom {
    color: #FFF;
    max-width: 250px;
    padding: 0 0 20px;
    text-align: left;
    line-height: 1.5;
    font-weight: 300;
    border-bottom: 1px solid #FFF;
    border-radius: 0;
}

.btn-border-bottom .btn-wrapper {
    display: flex;
    gap: 5px;
}
a.btn.btn-border-bottom:focus {
    border: 0;
    outline: 0;
}

.bg-dark {
    background: #131313 !important;
    color: #fff;
}
.bg-dark p{ color: #737475; }
h5.sm-sub-heading {
    font-weight: 400;
    color: #737475;
    font-size: 16px;
}
span.white {
    color: #FFF;
}

 .service-card {
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
        }
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }
        .service-description {
            color: #666;
            line-height: 1.6;
        }
        
        .sv-item {
            border-color: #414141 !important;
        }
       
        .sv-item .icon svg {
            width: 25px !important;
        }

        .ad-section {
        background-color: #fff;
        position: sticky !important;
        top: 0;
        padding: 70px 0 !important;
        }

    .ad-image-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .ad-image-wrapper img {
      max-width: 100%;
      height: auto;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }
    span.tag {
        padding: 1px 10px;
        border-radius: 30px;
        color: #FFF;
        background-image: linear-gradient(45deg, #445BAD, #CC65F5);
        font-weight: 300;
        font-size: 14px;
    }
    .tag-group span.tag {
        margin-right: 5px;
    }
    .ad-section .content-area {
        padding-left: 40px;
    }
    .port-text {
        display: flex;
        align-items: center;
        min-height: 100vh;
        position: sticky;
        top: 0;
        background-image: url('../imgs/digi-dec-light.png');
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
}
.client-we-served .marquee-wrapper {
    background: transparent;
}
.client-we-served .marquee-item {
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gx-7 {
    --bs-gutter-x: 5rem !important;
}

.pf-page-sec .portfolio-item {
    margin-bottom: 20px;
}
.pf-page-sec.portfolio-sec .right-column{
    padding-top: 0;
}

.portfolio-sec .right-column {
    padding-top: 220px;
}

.portfolio-item {
    display: block;
    margin-bottom: 6em;
    position: relative;
}


.portfolio-item .pf-cate {
    font-size: 15px;
    color: #737475;
    font-weight: 300;
}
.portfolio-item  .pf-item-title {
    font-weight: 400;
    margin: 5px 0 0;
    color: var(--color-dark);
}


.portfolio-item .pf-item-img {
    width: 100%;
    margin-bottom: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.portfolio-item{ text-decoration: none !important;}
.ad-image-wrapper .pf-hv-btn,
.portfolio-item .pf-hv-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    background-color: rgba(255,255,255,0.5);
    opacity: 0;
    text-decoration: none;
    transition: .3s all ease;
}
.cs-item:hover .pf-hv-btn,
.portfolio-item:hover .pf-hv-btn{ opacity: 1;}

.ad-image-wrapper .pf-hv-btn .btn-circle ,
.portfolio-item .pf-hv-btn .btn-circle {
    width: 120px;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    background: #FFF !important;
    border-color: #FFF !important;
}
.cs-item:hover .pf-hv-btn .btn-circle,
.portfolio-item:hover .pf-hv-btn .btn-circle{ color: #FFF; }
.cs-item:hover .pf-hv-btn .btn-circle::before,
.portfolio-item:hover .pf-hv-btn .btn-circle::before{
    left: 0;
    bottom: 0%;
    top: auto;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.cs-item:hover .btn-digi .icon,
.portfolio-item:hover .btn-digi .icon{
    filter: brightness(9) !important;
    transition: 2s all ease  !important;
}

section.faqs {
    background-image: url('../imgs/bg-img.jpg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.faqs .accordion-item {
    background: transparent !important;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    border: 0;
    position: relative;
}
.faqs .accordion-item p{
     color: #FFFFFF;
}

.faqs .accordion-button {
    background: transparent;
    color: #FFF;
    font-size: 22px;
    padding: 8px 0 8px 37px;
    min-height: 70px;
    position: relative;
}
.faqs .accordion-button:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
.faqs .accordion-item::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(45deg, #414141, transparent);
    bottom: 0;
    left: 0;
}
.faqs .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.faqs .accordion-button::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url('../imgs/accordion-icon.svg') !important;;
    left: 0;
    top: 20px;
    background-size: cover  !important;
    background-repeat: no-repeat  !important;
    background-position: center !important;
    transition: .3s all ease;
    transform: rotate(45deg);
}

.accordion-button.collapsed::before {
    transform: rotate(0);
}
.faqs .accordion-button::after {
    display: none;
}

section.pim-sec {
    background: url('../imgs/bg-img-purple.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 100px 15px;
}
.bg-dark h5.sm-sub-heading {
    color: #fFF;
}
.h0 {
    font-size: 90px;
    font-weight: 400;
    line-height: 1.1;
}
.h0.fw-normal {
    font-weight: 500 !important;
}
p.text-medium {
    font-size: 18px;
}
.btn-digi.btn-circle.btn-dark {
    color: #FFF;
}

.clr-grey{
    color: #737475;
}
.btn-digi.btn-circle.btn-dark .icon {
    filter: brightness(9);
    transition: .3s all ease;;
}
.btn-digi.btn-circle.btn-dark::before {
    background: #FFF;
}
.btn-digi.btn-circle.btn-dark:hover{ color: var(--color-primary) !important;}
.btn-digi.btn-circle.btn-dark:hover .icon{
    filter: brightness(1) !important;
}

.rev-fixed-img{
    width: 100%;
    position: relative;
    z-index: 2;
}

.img-slide-area {
    position: absolute;
    top: 0;
    left: 27px;
    max-width: 165px;
    bottom: 0;
    height: fit-content;
    margin: auto 0;
    z-index: 1;
    border-radius: 50% !important;
    overflow: hidden;
}

.review-item .review-content {
    font-weight: 300;
    color: #737475;
    font-size: 19px;
}
.quote-img-rev{
    max-width: 70px;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 20px;
}

#reviewsCarousel .carousel-indicators {
    bottom: -70px;
    right: auto;
    left: 0;
    margin: 0;
}
#reviewsCarousel .carousel-indicators button {
    background-color: #CCCCCC !important;
    opacity: 1 !important;
}

#reviewsCarousel .carousel-indicators button.active {
    background-color: #9747FF !important;
    height: 3px;
}
.footer {
    background-color: #FFF;
    padding: 50px 15px 30px;
    border-top: 1px solid #EBEBEB;
}
.footer h5 {
    color: #000000;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 18px;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a,
.footer p {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}
.footer ul li a:hover {
    text-decoration: underline;
}
.contact-info {
    color: #6c757d;
}
.contact-info i {
    margin-right: 10px;
    color: #0d6efd;
}
.bg-dark.copyright {
    background-color: #333333 !important;
    text-align: center;
}
.bg-dark.copyright p{
    color: #FFFFFF !important;
}




.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #463D8D, #AD4190);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}
.marquee-track.revert-marquee {
    animation: scroll-right 20s linear infinite;
}

.marquee-item {
    flex: none;
    color: #FFF;
    padding: 1.5rem 2.5rem;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
    transform: translateX(0%);
    }
    100% {
    transform: translateX(-50%);
    }
}
@keyframes scroll-right {
    0% {
    transform: translateX(-50%);
    }
    100% {
    transform: translateX(0%);
    }
}

@media (max-width: 1399px){
    .img-slide-area{
        left: 10px;
    }
}
@media (max-width: 1199px){
    .img-slide-area{
        max-width: 130px;
    }
}
@media (max-width: 991px){
    .img-slide-area{
        left: 26px;
    }
}
@media (max-width: 767px){
    .img-slide-area{
        max-width: 29%;
        left: 5%;
    }
}
@media (max-width: 767.98px) {
    .ad-section {
    text-align: center;
    }
}




.counter-sec .counter-box {
    position: relative;
    text-align: center;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.counter-sec .counter-number,
.counter-sec .counter-number-suffix {
    font-size: 80px;
    color: var(--color-primary);
    font-weight: 300;
}

.counter-sec .counter-text {
    font-weight: 300;
    font-size: 18px;
}

.counter-sec .counter-box::before {
    position: absolute;
    content: '';
    width: 120%;
    aspect-ratio: 1/1;
    border: 1px solid #CCC;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.service-sec .sv-img {
    position: absolute;
    left: 0;
    transform: rotate(0deg) translate(-400px, 0);
    max-width: 80%;
    right: 0;
    margin: 0 auto;
    transition: .7s all ease;
    opacity: 0;
}

.service-sec  .col-lg-4 {
    position: relative;
    overflow: hidden;
}

.service-sec .sv-img.highlight {
    transform: rotate(15deg) translate(0, 0);
    opacity: 1;
}






.timeline-section .step-content .fw-bold.text-muted {
    margin-bottom: 3.5rem !important;
    font-weight: 400 !important;
    color: #111 !important;
}

.timeline-section {
      position: relative;
    }

    .timeline-progress {
      position: absolute;
      top: 55px;
      left: 0;
      height: 1px;
      width: 100%;
      background: transparent;
    }

    .timeline-progress-bar {
      position: absolute;
      height: 1px;
      background-color: #3d3d3d;
      width: 0%;
      transition: width 1s ease-in-out;
    }

    .step-marker {
      position: absolute;
      top: 47px;
        left: 10px !important;
        right: 0 !important;
        margin: 0 auto;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: #9B5DE5;
      outline: 7px solid #FFF;
    }

    .step-block {
      text-align: center;
      position: relative;
    }

    .step-number-bg {
      font-size: 72px;
      color: #f5f5f5;
      font-weight: 600;
      line-height: 1;
    }

    .step-title {
        font-size: 21px;
        font-weight: 500;
        color: #222;
        margin-bottom: 10px;
    }

    .step-desc {
        font-size: 15px;  
        color: #666;
        font-weight: 300;
        margin-bottom: 20px;
    }

    /* Animation Delay */
    .step-content {
      opacity: 0;
      transition: opacity 0.5s ease-in;
    }

    .step-animated .step-content {
      opacity: 1;
    }

@media (max-width: 1024px) and (min-width: 767px){
    section.hero-section img {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 47px !important;
    }
}

@media (min-width: 767px){
    .sv-item .col-lg-1.col-sm-1 {
        padding-left: 0;
    }

    .sv-item .col-lg-2.col-sm-2 {
        padding-right: 0;
    }
    .scale-img {
        overflow: hidden;
        transition: .3s all ease;
    }
    .scale-img > img {
        transition: .5s all ease;
        transform: scale(1);
    }
    .scale-img:hover > img {
        transform: scale(1.05);
    }
}

@media (max-width: 767.98px){
    .sv-item .col-lg-1.col-sm-1{
        padding-bottom: 10px;
    }
    .sv-item .col-lg-2.col-sm-2{
        display: none;
    }
    .btn-digi.btn-circle {
        width: 100%;
        aspect-ratio: auto;
        border-radius: 10px;
    }
    .abt-sec h2.h2 {padding-right: 0 !important;}
    .h2 {
        font-size: 33px;
    }
    .btn-digi.btn-circle:hover::before {
        border-radius: 0;
    }
    .timeline-progress, .timeline-progress-bar {
        top: auto;
        bottom: 100px;
    }
    .step-marker {
        top: auto;
        bottom: 95px;
    }
    .ad-section .content-area {
        padding-left: 15px;
        display: flex;
        flex-direction: column;
    }
    .ad-section .row {
        flex-direction: column-reverse;
    }
    .tag-group {
        display: flex;
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .tag-group span.tag {
        margin-right: 0 !important;
        flex: auto;
    }
    .ad-section .content-area .tag-group {
        order: 2;
    }
    .counter-sec .counter-number,
    .counter-sec .counter-number-suffix {
        font-size: 40px;
    }
    .counter-sec .counter-text {
        font-size: 14px;
        margin-bottom: 0;
    }

    .counter-sec .counter-text br {
        display: none;
    }
    .counter-sec .counter-box::before {
        left: 50%;
        width: 140%;
    }
    .counter-sec .counter-box {
        margin-bottom: 22px;
    }
    .counter-sec {
        border-width: 1px 0;
        border-style: solid;
        border-color: #CCCCCC;
    }
    .port-text {
        display: none;
    }
    .portfolio-sec {
        padding-top: 20px;
        background-color: #fff;
        background-image: url('../imgs/digi-dec-light.png');
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    .portfolio-sec .portfolio-item {
        margin-bottom: 40px;
    }
    .portfolio-sec .right-column {
        padding-top: 0;
    }
    .faqs .accordion-button {
        font-size: 19px;
        line-height: 1.3;
    }

    .hero-section h1 {
        font-size: 35px;
    }

    .hero-section 
    p.normal-text {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-section .btn-digi {
        width: 100%;
    }

    .hero-section .btn-digi .btn-wrapper {
        justify-content: center;
    }
    .hero-section .img-wrapper {
        display: none;
    }
    .step-content {
        text-align: left;
        max-width: 85%;
        margin-left: auto;
        padding-bottom: 20px;
        border-bottom: 1px solid #CCCCCC;
        margin-bottom: 40px;
        padding-right: 10px;
    }
    .step-marker {
        bottom: auto !important;
        top: 0 !important;
        right: auto !important;
        left: 15px !important;
    }

    .timeline-section .step-content .fw-bold.text-muted {
        margin-bottom: 0 !important;
    }

    .step-number-bg {
        position: absolute;
        right: 25px;
        top: 0;
        font-size: 57px;
    }
    .timeline-progress {
        display: none;
    }
    .timeline-section::before {
        position: absolute;
        content: '';
        width: 1px;
        height: 95%;
        background: #3d3d3d;
        left: 22px;
        top: 0;
    }
    .h0 {
        font-size: 36px;
        line-height: 1.2;
    }
    .have-a-project p {
        margin-bottom: 20px !important;
    }

}
div#reviewsCarousel {
    pointer-events: none;
}
@media (max-width: 768px) {
  .hero-section,
  .hero-section .slide {
    height: 85vh !important;
  }
}

body.index-page .side-nav .cell-column,
body.index-page .side-nav .logo-column {
    opacity: 0;
    pointer-events: none;
}

body.index-page .side-nav {
    background: transparent;
    border-color: transparent;
}

body.index-page .side-nav * {
    transition: .3s all ease;
}

body.index-page .side-nav span,
body.index-page .side-nav small {
    color: #FFF !important;
}

/* ------------- */

body.index-page .side-nav.on-home-active .logo-column,
body.index-page .side-nav.on-home-active .cell-column{
    opacity: 1;
    pointer-events: auto;
}

body.index-page .side-nav.on-home-active {
    background: rgba(255, 255, 255, .7);
    border-color: #cccccc;
}

body.index-page .side-nav * {
    transition: .5s all ease;
}

body.index-page .side-nav.on-home-active span{
    color: #333333 !important;
}
body.index-page .side-nav.on-home-active small {
    color: #737475 !important;
}

/* ------------------- */

.service-inner{
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.service-inner.bg-dark{
    background-image: url('../imgs/slide03bg.jpg') !important;
    background-color: #1d1d1d;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
}

.service-inner .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-sec.bg-light .btn-digi.btn-outline:hover {
    color: #FFF !important;
}
.service-sec.bg-light .btn-digi.btn-outline {
    color: #000 !important;
}

.service-inner .carousel .carousel-item img {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.formBox.bg-white {
    color: #333333;
}

.formBox input[type="text"],
.formBox input[type="email"],
.formBox input[type="number"],
.formBox input[type="tel"],
.formBox textarea,
.formBox select {
    padding: 12px;
    font-weight: 300 !important;
}
.formBox button.btn-digi[type="submit"] {
    color: #000;
    border-color: #333;
}
.formBox button.btn-digi[type="submit"]:hover{
    color: #FFF
}
.formBox button.btn-digi[type="submit"] .btn-wrapper{
    min-width: 150px;
    justify-content: center;
}

.btn-digi.btn-outline.clr-black {
    color: #000;
}
.btn-digi.btn-outline.clr-black:hover {
    color: #FFF;
}
.logos-marquee.lm-1 .marquee-wrapper{
    background: transparent !important;
}
.logos-marquee.lm-1 .marquee-wrapper .marquee-item {
    padding: 0 4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poe-sec .marquee-item {
    padding: 0 2.5rem;
}

.wm-box {
    border: 1px solid #CDCDCD;
    padding: 15px;
    border-radius: 10px;
    background: #FFF;
    transition: .3s all ease;
    height: 100%;
}

.wm-box .box-num {
    font-size: 60px;
    line-height: 1;
    font-weight: bold;
    color: #4D4D4F;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: .8px;
    -webkit-text-stroke-color: #4D4D4F;
}

.wm-box-title {
    font-size: 27px;
    margin-top: 3px;
    transition: .3s all ease;
}

.wm-box:hover {
    border-color: var(--color-primary);
}

.wm-box:hover .wm-box-title {
    color: var(--color-primary);
}

.four-boxes .row.wm-row-one,
.four-boxes .row.wm-row-two {
    position: relative;
}

.four-boxes .row.wm-row-one::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 80px;
    background: transparent;
    bottom: -55px;
    max-width: 450px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-width: 0px 1px 1px 1px;
    border-color: #CDCDCD;
    border-style: solid;
    border-radius: 0 0 10px 10px;
    z-index: -1;
}
.four-boxes .row.wm-row-two::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 80px;
    background: transparent;
    top: -65px;
    max-width: 450px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-width: 1px 1px 0px 1px;
    border-color: #CDCDCD;
    border-style: solid;
    border-radius: 10px 10px 0 0;
    z-index: -1;
}

.wm-logo-box img {
    max-width: 150px;
    width: 100%;
    background: #FFF;
    border-radius: 50%;
    padding: 15px;
    border: 1px solid #CDCDCD;
}


/* ------------------------ */


.six-boxes .row.wm-row-one,
.six-boxes .row.wm-row-two,
.six-boxes .row.wm-row-three {
    position: relative;
}

.six-boxes .row.wm-row-one::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 80px;
    background: transparent;
    bottom: -55px;
    max-width: 300px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-width: 0px 1px 1px 1px;
    border-color: #CDCDCD;
    border-style: solid;
    border-radius: 0 0 10px 10px;
    z-index: -1;
}
.six-boxes .row.wm-row-three::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 80px;
    background: transparent;
    top: -65px;
    max-width: 300px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-width: 1px 1px 0px 1px;
    border-color: #CDCDCD;
    border-style: solid;
    border-radius: 10px 10px 0 0;
    z-index: -1;
}

.six-boxes .row.wm-row-two::before {
    position: absolute;
    content: '';
    width: 100%;
    max-width: 700px;
    background: #CDCDCD;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: -1;
}

.wm-sec .body-text.light.text-center {
    max-width: 767px;
    width: 100%;
    margin: 0 auto;
}


.poe-sec .marquee-wrapper {
    background: transparent;
}

@media (min-width: 767px){
    .six-boxes .row.wm-row-two .wm-desc {
    max-height: 115px;
    overflow-y: scroll;
}
.six-boxes .row.wm-row-two .wm-desc::-webkit-scrollbar {
  width: 8px;
}

.six-boxes .row.wm-row-two .wm-desc::-webkit-scrollbar-track {
  background: #f0f0f0; /* light track background */
  border-radius: 4px;
}

.six-boxes .row.wm-row-two .wm-desc::-webkit-scrollbar-thumb {
  background-color: #9747ff; /* your purple color */
  border-radius: 4px;
  border: 2px solid transparent; /* optional: for spacing */
  background-clip: content-box;   /* makes the border appear as spacing */
}

/* Optional: hover effect for better UX */
.six-boxes .row.wm-row-two .wm-desc::-webkit-scrollbar-thumb:hover {
  background-color: #7b36d2; /* slightly darker on hover */
}

}


.hero-inner {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1d1d1d;
    background-image: url('../imgs/hero-inner-bg.jpg') !important;
    background-size: cover;
    background-position: center center;
    color: #FFF;
}

.hero-inner .hi-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-inner .body-text {
    color: #CCCCCC;
}
.blogs .nav-item .active {
    background: linear-gradient(90deg, #9747ff, #7b36d2);;
    color: #FFF !important;
}

.blogs .offcanvas  button.active {
    background: linear-gradient(90deg, #9747ff, #7b36d2);;
    color: #FFF !important;
}
.blog-inner .list-group-item a {
    text-decoration: none;
    color: #000;
    transition: .3s all ease;
}

.blog-inner .list-group-item a:hover {
    color: var(--color-primary);
}
.blogs .nav-item  .nav-link {
    text-wrap: nowrap !important;
}
.blog-card img {
    aspect-ratio: 1/.7;
    object-fit: cover;
}

.contact-sec .container {
    padding: 40px;
    background: #F9F9F9;
    border-radius: 20px;
}


@media (max-width: 767px){
    .four-boxes .row.wm-row-two::before ,
    .four-boxes .row.wm-row-one::before {max-width: 250px;}
    .six-boxes .row.wm-row-two::before {
        width: 1px;
        height: 100%;
    }
    .wm-sec .col-md-6.col-12.mb-3,
    .wm-sec .col-md-5.col-12.mb-3{
        padding: 0;
    }
    .logos-marquee.lm-1 .marquee-wrapper .marquee-item {
        padding: 0 2em;
    }
    section.pim-sec {
        padding: 60px 15px;
    }
    .btn-digi {
        width: 100%;
        text-align: center;
    }

    .btn-digi .btn-wrapper {
        justify-content: center;
    }
    section.hero-inner {
        padding-top: 70px;
        min-height: 400px;
    }
    .ct-boxes .col-2 {
        width: 12%;
    }
    .hero-section .btn-border-bottom {
        display: none;
        right: auto;
        left: 0;
        bottom: 17px;
        max-width: 100% !important;
        width: 100%;
    }
    .btn-border-bottom .btn-wrapper {
        justify-content: space-between;
    }
    .client-we-served .marquee-item {
        padding: 0 1.3rem;
    }
    .client-we-served span.marquee-item img {
        max-width: 99px;
    }
    .faqs .accordion-button {
        padding: 8px 37px 8px 0;
    }
    
    .faqs .accordion-button::before {
        left: auto;
        right: 0;
    }

}

.lightbox-modal {
  display: none; 
  position: fixed; 
  z-index: 99999; 
  padding-top: 90px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  cursor: pointer;
  z-index: 100000;
}
.portfolio-item img.pf-item-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
}


.pf-cate-tabs-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
  }
  
  .pf-cate-tabs-container .pf-cate-tabs {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    margin: 0 10px;
    flex: 1;
  }
  
  .pf-cate-tabs-container .pf-cate-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  .pf-cate-tabs-container .scroll-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
    transition: color 0.3s;
    flex-shrink: 0;
  }
  
  .pf-cate-tabs-container .scroll-arrow:hover {
    color: #000;
  }
  
  .pf-cate-tabs-container .scroll-arrow:disabled {
    color: #ccc;
    cursor: not-allowed;
  }
  
  .pf-cate-tabs-container .pf-cate-tabs {
    white-space: nowrap;
  }
  
  .pf-cate-tabs-container .tab-item {
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 7px;
    padding: 7px 17px;
    border: 1px solid var(--color-primary);
    color: #1d1d1d;
    background: transparent;
    font-weight: 300;
    font-size: 16px;
    transition: 300ms all ease;
  }
  .pf-cate-tabs-container .tab-item:hover {
    background: var(--color-primary);
    color: #FFF;
}

.tab-item.active {
  background: linear-gradient(90deg, #9747ff, #7b36d2);;
    color: #FFF !important;

}
a.sv-item {
    color: #FFF;
    text-decoration: none;
}


/* ---------- HERO SLIDER NAV ---------- */
.hero-section        { position: relative; }
.hero-nav            { position: absolute;
                       top: 50%; right: 30px;
                       transform: translateY(-50%);
                       display: flex; flex-direction: column; gap: 14px;
                       z-index: 20; }

.hero-nav button     { width: 40px; height: 40px;
                       border: 1px solid #fffFFF50; border-radius: 50%;
                       background: transparent; cursor: pointer;
                       display: flex; align-items: center; justify-content: center;
                       transition: .25s all ease; }

.hero-nav button:hover { border-color: #FFF; }
.hero-nav img          { width: 20px; height: 20px; pointer-events: none; }

a.btn.btn-border-bottom {
    pointer-events: none;
    cursor: auto;
}
.service-sec.bg-dark p {
    color: #FFF !important;
}
label.check-checkbox {
    font-size: 14px;
    font-weight: 300 !important;
    color: #333;
    margin-top: 15px;
}

label.check-checkbox input[type="checkbox"] {
    position: relative;
    top: 3px;
    width: 15px;
    height: 15px;
}


@media (max-width: 767px){
    .pf-cate-tabs-container .tab-item {
        font-size: 13px;
    }
    
    .hero-nav {
        top: auto !important;
        bottom: 20px !important;
        right: 20px !important;
        transform: translateY(0) !important;
    }
    .hero-nav button {
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    .faqs .accordion-body {
        padding-left: 0 !important;
    }
}