@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --orange: #FF9900;
    --orangedark: #e68312;
    --white: #ffffff;
    --black: #101010;
    --textgrey: #c0c0c0;
    --darkgrey: #343434;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    font-family: "DM Sans", sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.text-white {
    color: var(--white);
}

.text-grey {
    color: var(--textgrey);
}

.text-orange {
    color: var(--orange);
}

.font700 {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 1px;
}

/* Default (large devices / desktops) */
h1 {
    font-size: 56px;
    line-height: 64px;
}

h2 {
    font-size: 54px;
    line-height: 62px;
}

h3 {
    font-size: 46px;
    line-height: 54px;
}

h4 {
    font-size: 38px;
    line-height: 46px;
}

h5 {
    font-size: 30px;
    line-height: 38px;
}

h6 {
    font-size: 22px;
    line-height: 30px;
}

/* Tablets (768px – 1024px) */
@media (max-width: 1024px) {
    h1 {
        font-size: 42px;
        line-height: 52px;
    }

    h2 {
        font-size: 40px;
        line-height: 50px;
    }

    h3 {
        font-size: 34px;
        line-height: 44px;
    }

    h4 {
        font-size: 28px;
        line-height: 38px;
    }

    h5 {
        font-size: 22px;
        line-height: 32px;
    }

    h6 {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
    }

    h3 {
        font-size: 26px;
        line-height: 34px;
    }

    h4 {
        font-size: 22px;
        line-height: 30px;
    }

    h5 {
        font-size: 18px;
        line-height: 26px;
    }

    h6 {
        font-size: 16px;
        line-height: 24px;
    }
}


p {
    font-size: 16px;
    line-height: 24px;
}

a {
    text-decoration: none;
}

.w90 {
    width: 90%;
}

.w75 {
    width: 75%;
}

@media (max-width: 1024px) {
    .w75 {
        width: 100%;
    }
}

.orange-btn {
    background: var(--orange);
    border-radius: 10px;
    cursor: pointer;
    justify-content: center;
    padding: 10px 18px;
    text-decoration: none;
    width: max-content;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease 0s;
    border: 2px solid var(--orangedark);
    display: inline-block;
}

.orange-btn:hover {
    background: var(--orangedark);
    border: 2px solid var(--orange);
    box-shadow: 0px 0px 15px 4px rgba(230, 131, 18, 0.57);
}



::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--orange);
}


/* custom cursor */

.cursor {
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    pointer-events: none;
    z-index: 99;
}

.cursor.cursor-hover {
    transform: scale(1.5);
    opacity: 0.4;
    transition-duration: 200ms;
    background: var(--white);
}

@media(max-width:1024px) {
    .cursor {
        width: 0;
        height: 0;
    }
}


.section-title h1 span {
    color: var(--orange);
}

.section-title h2 span {
    color: var(--orange);
}


.section-title h3 span {
    color: var(--orange);
}

.section-title h4 span {
    color: var(--orange);
}

/* custom cursor */

.filter-form {
    gap: 20px;
}

.form-group {
    width: 100%;
    position: relative;
}


.form-control {
    background: var(--darkgrey);
    padding: 10px 20px;
    border: 1px solid var(--textgrey);
    border-radius: 10px;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    min-height: 49px;
    transition: all 0.3s ease 0s;
}

.form-control:hover {
    background: var(--black);
    border: 1px solid var(--orange);
    outline: none;
}

.form-control:focus {
    background: var(--black);
    border: 1px solid var(--orange);
    color: var(--white);
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--white);
}

select.form-control {
    color: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-control option {
    color: var(--white);
}

.arrow {
    content: "";
    position: absolute;
    top: 40%;
    right: 1rem;
    width: 0;
    height: 0;
    pointer-events: none;
    border: solid var(--white);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.3s ease;
}

select.form-control:focus+.arrow,
select.form-control:active+.arrow {
    top: 45%;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.page-header {
    padding: 120px 0px 60px 0px;
    background-image: linear-gradient(#00000096, #00000096), url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
}

header {
    width: 100%;
    height: 80px;
    transition: all 0.3s ease 0s;
    z-index: 999;
}


header.home {
    position: static;
    height: 80px;
}

header .logo-block {
    width: 240px;
}

header .d-flex {
    align-items: center;
    justify-content: space-between;
}

header .mainmenu {
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header .mainmenu li a {
    color: var(--white);
}

header .mainmenu li a:hover {
    color: var(--orange);
}

.hidden {
    top: -80px;
}

.scrolled-up {
    background: var(--black);
    /* solid bg when scrolling up */
}

.hero-section {
    padding: 80px 0px;
}

.hero-section h1 span {
    color: var(--orange);
}

.hero-section .ico-image {
    width: 32px;
}

.hero-section .content-block .sub-text {
    padding: 7px 14px 7px 14px;
    background: var(--darkgrey);
    border-radius: 10px;
    font-size: 18px;
    width: max-content;
}

.clients-section {
    padding: 30px 0px;
}

.clients-section .client-logo {
    background: linear-gradient(0deg, #e6831226, transparent);
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid #e6831226;
}

.clients-section .client-carousel {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.services-section .service-card h3 {
    color: var(--orange);
}

@media(max-width:768px) {
    .services-section .service-card h3 {
        font-size: 24px;
        line-height: 28px;
    }
}

.service-section {
    padding: 60px 0px;
}

.service-section .sticky-block {
    position: sticky;
    top: 0px;
    margin-bottom: 24px;
}

.service-card {
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid var(--darkgrey);
    transition: all 0.3s ease 0s;
    margin-bottom: 24px;
}

.service-card>i {
    font-size: 32px;
    color: var(--black);
    background: var(--orange);
    padding: 10px;
    border-radius: 50%;
}

.service-card h6 {
    letter-spacing: normal
}

.service-card a:hover {
    color: var(--orange);
}

.collab-section {
    padding: 60px 0px;
}

.cta-section {
    padding: 60px 0px;
}

.cta-section .cta-banner {
    background: linear-gradient(#00000096, #00000096), url('../images/cta-section-image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 120px;
    border-radius: 10px;
    border: 1px solid var(--darkgrey)
}

.cta-section h3 {
    width: 80%;
    margin: auto auto 30px auto;
}

.testimonial-section {
    padding: 60px 0px;
}

/* 
.testimonial-section .testimonial-carousel {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
} */

.testimonial-section .testimonial-card {
    background: linear-gradient(0deg, #e6831226, transparent);
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid #e6831226;
}

.testimonial-section .testimonial-brand {
    max-width: 100px;
}

.testimonial-section .testimonial-brand img {
    filter: grayscale(100%) brightness(60%);
}


.testimonial-section .testimonial-card .testimonial-rating {
    margin-bottom: 8px;
}

.testimonial-section .testimonial-card i {
    font-size: 20px;
    color: var(--orange);
}

.testimonial-section .testimonial-card h6 {
    letter-spacing: normal;
}

.testimonial-section .testimonial-card p {
    margin-bottom: 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
}


.certification-section {
    padding: 60px 0px;
}

.certification-section .certification-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 15px;
}

.certification-section .certification-grid .certification-card {
    border: 2px solid var(--orange);
    padding: 10px;
    border-radius: 10px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    transition: all .3s ease;
}


.certification-section .certification-grid .certification-card h6 {
    background: var(--orange);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 0;
    transition: all .3s ease;
}

.certification-section .certification-grid .certification-card img {
    transition: all .3s ease;
}

.certification-section .certification-grid .certification-card:hover img {
    transform: scale(1.1);
}


.certification-section .certification-grid .certification-card:hover h6 {
    background: var(--black);
    color: var(--white) !important;
}

.casestudy-section {
    padding: 60px 0px;
}

.casestudy-section .casestudy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.casestudy-section .casestudy-grid .casestudy-card {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--darkgrey);
}

.casestudy-section .casestudy-grid .casestudy-card:hover {
    border: 2px solid var(--orange);
    box-shadow: 0px 0px 15px 4px rgba(230, 131, 18, 0.57);
}

.casestudy-section .casestudy-grid a {
    display: block;
    padding: 12px;
}

.casestudy-section .casestudy-grid .casestudy-card .casestudy-image {
    overflow: hidden;
    border-radius: 10px;
    transition: all .3s ease;
    margin-bottom: 10px;
}

.casestudy-section .casestudy-grid .casestudy-card img {
    width: 100%;
    border-radius: 10px;
    transition: all .3s ease;
}

.casestudy-section .casestudy-grid .casestudy-card:hover img {
    transform: scale(1.1);
}

.casestudy-section .casestudy-grid .casestudy-card h6 {
    margin-bottom: 10px;
    letter-spacing: 0;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
}

.casestudy-section .casestudy-grid .casestudy-card:hover h6 {
    color: var(--orange);
}

.casestudy-section .casestudy-grid .casestudy-card p {
    font-size: 14px;
    margin-bottom: 8px;
}


.portfolio-section {
    padding: 60px 0px;
}

.portfolio-section .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* default for large screens */
    gap: 1rem;
    /* optional spacing */
}

/* Tablet (2x2) */
@media (max-width: 992px) {
    .portfolio-section .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (2x2) */
@media (max-width: 768px) {
    .portfolio-section .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Very small devices (1x1) */
@media (max-width: 390px) {
    .portfolio-section .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}




.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-card img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--textgrey);
    padding: 5px;
    transition: all 0.3s ease 0s;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card .portfolio-content {
    background: #0000004a;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.portfolio-card .portfolio-content {
    background: linear-gradient(358deg, #000000, transparent);
    position: absolute;
    left: 15p;
    height: 100%;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 24px;
}

.portfolio-card h6 {
    line-height: 22px;
}

.portfolio-card i {
    background: var(--orange);
    color: var(--white);
    padding: 6px;
    border-radius: 50%;
    font-weight: 500;
    box-shadow: 0px 8px 15px rgb(230 131 18 / 57%);
    transition: all 0.3s ease 0s;
    border: 2px solid var(--orangedark);
}

.portfolio-card i:hover {
    background: var(--orangedark);
    border: 2px solid var(--orange);
    box-shadow: 0px -8px 15px rgb(230 131 18 / 57%);
}

/* Tabs nav */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.tabs li {
    list-style: none;
    margin-right: 20px;
}

.tabs a {
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    color: var(--textgrey);
    font-weight: 500;
}

.tabs a.active {
    border-bottom: 3px solid var(--orangedark);
    color: var(--white);
    font-weight: 700;
}

/* Tab content */
.tab-content {
    /* display: none; */
    color: var(--textgrey);
}

.tab-content.active {
    display: block;
}

.tools-section {
    padding: 60px 0px;
}

.tools-section .owl-carousel {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.tool-logo img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(60%);
    transition: all 0.3s ease 0s;
}

.tool-logo img:hover {
    filter: grayscale(0%) brightness(100%);
}




/* about page */

/* =========== Process Card ============ */

.myprocess-box {
    background: linear-gradient(0deg, #e6831226, transparent);
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid var(--orange);
}

.myprocess-box .step-indicate {
    background: var(--orange);
    text-align: center;
    margin: auto;
    width: 120px;
    height: max-content;
    padding-top: 8px;
    position: relative;
    top: -36px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}

.myprocess-box .step-indicate:after {
    content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid var(--orangedark);
    border-left: 8px solid #2B526300;
    border-right: 8px solid var(--orangedark);
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}

.myprocess-box .step-indicate:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid var(--orangedark);
    border-left: 8px solid var(--orangedark);
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

.myprocess-box .step-indicate .num {
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 16px;
}

.myprocess-box .box-context {
    margin-top: -70px;
}

.myprocess-box .box-context p {
    text-align: center;
}

.indicate-dot {
    background: var(--orange);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 0 0px 8px var(--orange);
    margin: auto 0;
    position: absolute;
    right: -53px;
    top: 45%;
    z-index: 9;
}


.direction-r .indicate-dot {
    background: var(--orange);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 0 0px 8px var(--orange);
    margin: auto 0;
    position: absolute;
    left: -53px;
    top: 45%;
    z-index: 9;
}


.myprocess-box .box-context h4 {
    text-align: center;
    font-size: 24px;
    margin-top: 50px;
}


/* =========== Process Card ============ */

/* ================ The Timeline ================ */

.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    padding: 1em 0;
    list-style-type: none;
}

.timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 6px;
    height: 100%;
    margin-left: -3px;
    background: linear-gradient(to bottom, rgba(220, 227, 236, 0), #DCE3EC 20%, #DCE3EC 80%, rgba(220, 227, 236, 0));

    z-index: 5;
}

.timeline li {
    padding: 1em 0;
}

.timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.direction-l {
    position: relative;
    width: 45%;
    float: left;
    text-align: right;
}

.direction-r {
    position: relative;
    width: 45%;
    float: right;
}



.time-wrapper {
    display: inline;

    line-height: 1em;
    font-size: 0.66666em;
    color: rgb(250, 80, 80);
    vertical-align: middle;
}

.direction-l .time-wrapper {
    float: left;
}

.direction-r .time-wrapper {
    float: right;
}

.time {
    display: inline-block;
    padding: 4px 6px;
    background: rgb(248, 248, 248);
}


/* ================ Timeline Media Queries ================ */

.process-section {
    padding: 60px 0px;
}

.logos-section {
    padding: 60px 0px;
}

.card-round {
    background: var(--black);
    border: 1px solid var(--orange);
    border-radius: 10px;
    padding: 20px 20px;
}

.card-round h6 {
    background: var(--orange);
    width: max-content;
    margin: auto;
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: -40px;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.card-logogrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
}

.offer-section {
    padding: 60px 0px;
}

.offers-list {
    column-count: 4;
    column-gap: 40px;
    /* space between columns */
    list-style-type: none;
    /* or circle, square, none */
    padding-left: 0px;
    font-size: 14px;
}

.offers-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.offers-list i {
    font-size: 20px;
    color: var(--orange);
}

.about-section {
    padding: 60px 0px;
}

.about-section img {
    border-radius: 10px;
    width: 90%;
}

/* about page */




/* blog page */

.blogs-section {
    padding: 60px 0px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.blog-card {
    background: linear-gradient(0deg, #e6831226, transparent);
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid #e6831226;
}

.blog-card h6 {
    letter-spacing: 0;
}

.blog-card .blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

.blog-card .blog-image .category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orange);
    border: 1px solid var(--orangedark);
    padding: 3px 12px;
    border-radius: 5px;
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
}

.blog-card img {
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease 0s;
}

.blog-card:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease 0s;
}

.blog-card:hover {
    border: 1px solid var(--orange);
}

.blog-card .blog-details {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
    gap: 16px;
}

.blog-card .blog-details i {
    font-size: 16px;
    background: var(--orange);
    padding: 5px;
    border-radius: 50%;
    color: var(--white);
}

.blog-card .blog-content .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
}




.blogpage .blog-grid {
    padding: 30px 0px 0px 0px;
}

.blogpage hr {
    margin: 1rem 0;
    color: var(--textgrey);
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 0.75;
}

.breadcrumbs {
    display: flex;
    gap: 12px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs a {
    color: var(--white);
}

.breadcrumbs a:hover {
    color: var(--orange);
}



/* blog page */



/* blog single */

.blogsingle {
    padding: 60px 0px;
}

.blogsingle .blog-grid {
    padding: 20px 0px;
}

.transpt a {
    color: var(--white);
}

.transpt a:hover {
    color: var(--textgrey);
}

.single-blogcard {
    background: linear-gradient(0deg, #e6831226, transparent);
    padding: 30px 30px;
    border-radius: 10px;
    border: 1px solid #e6831226;
}

.single-blogcard .author-block {
    color: var(--white);
}

.single-blogcard .author-block i {
    color: var(--orange);
}

.single-blogcard .feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

.single-blogcard .feature-image img {
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease 0s;
}

.single-blogcard .feature-image:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease 0s;
}

.single-blogcard .category {
    background: var(--orange);
    border: 1px solid var(--orangedark);
    padding: 3px 12px;
    border-radius: 5px;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    width: max-content;
}

.single-blogcard .blog-title {
    font-size: 46px;
    line-height: 54px;
    margin: 16px 0px;
}

.blog-content {
    padding: 30px 0px;
}

.blog-content p {
    margin-bottom: 16px;
}

.blog-content h2,
h3 {
    font-size: 30px;
    line-height: 38px;
}

.blog-content h5 {
    font-size: 18px;
    line-height: 26px;
}

.blog-content ul {
    padding-left: 16px;
}

.blog-content ul li::marker {
    color: var(--orange);
    font-size: 18px;
}

.blog-content .social-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 12px;
}

.blog-content .social-block ul li a {
    color: var(--white);
}

.blog-content .social-block .ri-facebook-fill {
    background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
    border-radius: 50%;
    padding: 5px;
}

.blog-content .social-block .ri-instagram-line {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    padding: 5px;
}

.blog-content .social-block .ri-linkedin-fill {
    background: linear-gradient(135deg, #0077b5 0%, #0e76a8 100%);
    border-radius: 50%;
    padding: 5px;
}

.blog-content .social-block .ri-twitter-x-line {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 50%;
    padding: 5px;
}

/* blog single */

footer {
    padding: 60px 0px 0px 0px;
    background: url(../images/footer-bg.png) no-repeat center center;
    background-size: cover;
}

footer .footer-block .footer-logo {
    width: 280px;
}

footer .footer-block .social-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 12px;
}

footer .footer-block .social-block ul li a {
    color: var(--white);
}

footer .footer-block .social-block .ri-facebook-fill {
    background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
    border-radius: 50%;
    padding: 5px;
}

footer .footer-block .social-block .ri-instagram-line {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    padding: 5px;
}

footer .footer-block .social-block .ri-linkedin-fill {
    background: linear-gradient(135deg, #0077b5 0%, #0e76a8 100%);
    border-radius: 50%;
    padding: 5px;
}

footer .footer-block .social-block .ri-twitter-x-line {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 50%;
    padding: 5px;
}

footer .footer-block .contact-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer .footer-block .contact-block ul li {
    margin: 0px 0px 12px 0px;
}

footer .footer-block .contact-block ul li a {
    color: var(--white);
}

footer .footer-block .contact-block ul li a:hover {
    color: var(--orange);
}

footer .footer-block .contact-block ul li a i {
    font-size: 20px;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-links li a {
    color: var(--textgrey);
    text-decoration: none;
    margin: 0px 0px 12px 0px;
    display: block;
}

.footer-links li a:hover {
    color: var(--orange);
}

footer .footer-copyright {
    border-top: 1px solid var(--darkgrey);
    padding-top: 15px;
}


.services-section {
    padding: 60px 0;
}

.services-section .service-card {
    padding: 0;
    border-radius: 0px;
    border: 0;
    transition: all 0.3s ease 0s;
    margin-bottom: 30px;
    position: relative;
}

.services-section .service-card img {
    border-radius: 10px;
}

.services-section .service-card a:hover {
    color: #ffffff;
}

/* Base styles */
.services-section .service-card {
    position: relative;
}

.services-section .service-card::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: -0.75rem;
    height: calc(100% - 2rem);
    width: 1px;
    background-color: #595959;
    /* subtle light gray line */
}

/* --- Desktop: 3 per row --- */
@media (min-width: 992px) {

    /* Remove border on every 3rd card */
    .services-section .row>div:nth-of-type(3n) .service-card::after {
        content: none;
    }

    /* Remove border on the last card */
    .services-section .row>div:last-of-type .service-card::after {
        content: none;
    }
}

/* --- Tablet: 2 per row --- */
@media (min-width: 768px) and (max-width: 991.98px) {

    /* Remove border on every 2nd card */
    .services-section .row>div:nth-of-type(2n) .service-card::after {
        content: none;
    }

    /* Remove border on the last card */
    .services-section .row>div:last-of-type .service-card::after {
        content: none;
    }
}

/* --- Mobile: 1 per row --- */
@media (max-width: 767.98px) {

    /* No vertical borders on mobile */
    .services-section .service-card::after {
        content: none;
    }
}

.services-section .service-card:hover {
    transform: rotateX(-12deg) rotateY(-14.5deg);

}

.case-study-section {
    padding: 60px 0;
}

/* Generic card */
.case-card {
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    min-height: 140px;
}

/* Big image */
.big-image {
    min-height: 520px;
}

.big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
    border-radius: 18px;
}

.logo-box {
    background: #f5f5f5;
    border-radius: 14px;
}

.logo-box img {
    display: block;
    /* max-height: 80px; */
    width: auto;
}

.stats-box {
    background: #f5f5f5;
    border-radius: 14px;
    color: #000000;
}

.stats-numbers {
    gap: 1.25rem;
}

.stat-item .stat-num {
    font-size: 2.2rem;
    line-height: 1;
    margin: 0;
    font-weight: 800;
    color: #000000;
}

.stat-suffix {
    font-size: 1rem;
    margin-left: 0.15rem;
    color: #000000;
    font-weight: 700;
}

.stat-label {
    color: #383838;
    font-size: .95rem;
    line-height: 1.1;
}

/* Orange full-width box inside right column */
.orange-box {
    background: var(--orange);
    color: #000;
    border-radius: 14px;
    transition: background .25s ease, transform .25s ease;
}

.btn-readmore {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* Hover effects */
.big-image:hover img {
    transform: scale(1.03);
}

.orange-box:hover {
    background: var(--orangedark);
    transform: translateY(-6px);
}

.case-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.contact-section {
    padding: 60px 0;
}

.contact-section .custom-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.contact-section .custom-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section .custom-input:focus {
    border-color: var(--orange);
    /* Orange highlight */
    box-shadow: 0 0 5px rgba(255, 122, 0, 0.7);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-section h4 {
    line-height: 1.5;
}


.contact-section .btn-warning:hover {
    background-color: var(--orangedark);
}

.contact-section .contact-info a {
    color: #ffffff;
    transition: all .3s ease;
}

.contact-section .contact-info a:hover {
    color: var(--orangedark);
}

/* Responsive tweaks */
@media (max-width:991.98px) {
    .big-image {
        min-height: 420px;
    }

    .stat-item .stat-num {
        font-size: 2.2rem;
    }
}

@media (max-width:767.98px) {
    .big-image {
        min-height: 300px;
    }

    .logo-box,
    .stats-box {
        min-height: 140px;
    }

    .stats-numbers {
        flex-direction: row;
        gap: .75rem;
    }
}

.image-block {
    margin-right: -90px;
}

@media(min-width:1600px) {
    .image-block {
        margin-right: -140px;
    }

}

.section-padding {
    padding: 60px 0;
}

@media (max-width:1023.98px) {
    .image-block {
        margin-right: 0;
    }

    .section-padding {
        padding: 30px 0;
    }

    .hero-section {
        padding-bottom: 40px;
    }
}

@media(max-width:575.98px) {
    .hero-section {
        padding-block: 30px;
    }
}

.nav-item a {
    color: #ffffff;
    transition: all .3s ease;
}

.nav-item a:hover {
    color: var(--orangedark);
}

.navbar-dark {
    background-color: #101010;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

}



/* Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: var(--textgrey) !important;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.owl-dot.active {
    background: var(--orangedark) !important;
    /* active color */
}

/* Optional nav arrows if you enable nav:true */
.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* ensures clicks pass through except on buttons */
}

.owl-nav button {
    background: #ff990063 !important;
    border: none;
    color: #fff !important;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* re-enable click for buttons */
    position: relative;
}

/* Move prev/next outside */
.owl-nav .owl-prev {
    margin-left: -60px;
    /* adjust how far left */
}

.owl-nav .owl-next {
    margin-right: -60px;
    /* adjust how far right */
}

.owl-nav button:hover {
    background: var(--orange) !important;
}

/* Responsive: keep buttons inside for small screens */
@media (max-width: 768px) {
    .owl-nav .owl-prev {
        margin-left: -10px;
    }

    .owl-nav .owl-next {
        margin-right: -10px;
    }
}


.tools-section .tool-logo {
    max-width: 120px;
}

@media(max-width:575.98px) {
    .tools-section .tool-logo {
        max-width: 90px;
    }
}

.tools-section h4 {
    font-size: 18px;
    line-height: 30px;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-card {
    height: 100%;
}

.results-wrapper {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

/* Marquee container */
.results-marquee {
    width: 50%;
    height: 550px;
    overflow: hidden;
    position: relative;

    /* Vertical fade mask */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

/* Track (original + clone) */
.results-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 20s linear infinite;
}

.results-marquee.fast .results-track {
    animation-duration: 35s;
}

.results-marquee.slow .results-track {
    animation-duration: 40s;
}

/* Vertical animation */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Cards */
.results-card {
    background: linear-gradient(140deg, rgba(255, 179, 107, 1) 25%, rgba(255, 209, 167, 1) 85%);
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
    margin-top: 20px;
}


.results-card::before {
    content: "";
    position: absolute;
    background: url(https://triviumco.com/wp-content/uploads/2023/11/shape-img1.png) no-repeat;
    width: 100%;
    height: 130px;
    right: 0;
    bottom: 0;
    background-size: cover;
}

.results-card .inner-col {
    position: relative;
    z-index: 2;
    padding: 40px 25px;
    border-radius: 20px;
}


.results-card.gray-col::before {
    content: "";
    position: absolute;
    background: url(https://triviumco.com/wp-content/uploads/2023/11/shape-img2.png) no-repeat;
    width: 100%;
    height: 130px;
    right: 0;
    bottom: 0;
    background-size: cover;
}

.results-card.gray-col {
    background: linear-gradient(140deg,
            rgba(211, 207, 192, 1) 25%,
            rgba(244, 239, 218, 1) 85%);
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
    margin-top: 20px;
}

.results-card.trans-col {
    border: 3px solid var(--orange);
    background: #000000;
}

.results-card.trans-col::before {
    background: none;
}

.results-card.trans-col .inner-col {
    background: #000000;
}

.results-card.trans-col .inner-col .results-card-span,
.results-card.trans-col .inner-col .results-card-p {
    color: #ffffff;
}

.results-card .results-card-span {
    font-size: 55px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.results-card .results-card-p {
    margin-top: 10px;
}

/* ✅ Responsive: Tablet & Mobile (Horizontal mode) */
/* ✅ Responsive: Tablet & Mobile (Horizontal mode) */
@media (max-width: 991px) {
    .results-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .results-marquee {
        width: 100%;
        height: auto;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
    }

    /* Track holds original + clone side by side */
    .results-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        animation: scrollLeft 20s linear infinite;
    }

    .results-marquee.fast .results-track {
        animation-duration: 10s;
    }

    .results-marquee.slow .results-track {
        animation-duration: 8s;
    }

    /* Each list (original/clone) inline */
    .results-list {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
    }

    /* Horizontal animation */
    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .results-card {
        max-width: 285px;
        margin: 0 20px 0 0;
    }
}

:root {
    --animation-speed-desktop: 30s;
    --animation-speed-mobile: 24s;
}


/* Track (original + clone) */
.results-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp var(--animation-speed-desktop) linear infinite;
    animation-timing-function: linear;
    will-change: transform;
}

/* Pause on hover */
.results-marquee:hover .results-track,
.results-marquee:focus-within .results-track {
    animation-play-state: paused;
}

/* Vertical animation */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}


.results-card .results-card-span {
    font-size: 55px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.results-card .results-card-p {
    margin-top: 10px;
}

/* Responsive: Tablet & Mobile (Horizontal mode) */
@media (max-width: 991px) {
    .results-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .results-marquee {
        width: 100%;
        height: auto;
        overflow: hidden;

        /* Horizontal fade mask */
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
    }

    .results-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        animation: scrollLeft var(--animation-speed-mobile) linear infinite;
        animation-timing-function: linear;
        will-change: transform;
    }

    .results-marquee:hover .results-track,
    .results-marquee:focus-within .results-track {
        animation-play-state: paused;
    }

    /* Horizontal animation */
    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .results-card {
        max-width: 285px;
        margin: 0 20px 0 0;
    }
}

@media (max-width: 991px) {
    .results-track {
        animation-name: scrollLeft;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-play-state: running;
        animation-duration: var(--animation-duration, 20s);
        /* fallback */
        will-change: transform;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            /* use the scroll width var, move by half the duplicated content */
            transform: translateX(calc(var(--scroll-width) / -2));
        }
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

.profile-link {
    background-color: #262626;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.profile-link:hover {
    background-color: var(--orangedark);
    color: #ffffff;
    box-shadow: 0px 0px 15px 4px rgba(230, 131, 18, 0.57);
    border: 1px solid var(--orange)
}

.section-title {
    font-weight: bold;
    font-size: 2rem;
}

.stats-strip {
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 0 0 12px 12px;
}

/* Base stat box style */
.stats-strip .stat-box {
    flex: 1 1 calc(16.66% - 2rem);
    /* Default: 6 per row */
    margin: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 8px;
    padding: 1rem;
    background: var(--orangedark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(0deg, #e6831270, transparent);
    border: 1px solid var(--orangedark);
}

/* Hover effect */
.stats-strip .stat-box:hover {
    transform: translateY(-5px);
}

/* Typography */
.stats-strip .stat-number {
    font-size: 2.7rem;
    font-weight: 700;
}

.stats-strip .stat-label {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

/* Tablet: 3 per row */
@media (max-width: 991px) {
    .stats-strip .stat-box {
        flex: 1 1 calc(33.33% - 2rem);
    }
}

/* Mobile: 3 per row */
@media (max-width: 767px) {
    .stats-strip .stat-box {
        flex: 1 1 calc(33.33% - 2rem);
    }
}

/* Small Mobile (<400px): 2 per row */
@media (max-width: 399px) {
    .stats-strip .stat-box {
        flex: 1 1 calc(50% - 2rem);
    }
}

.form-label {
    color: #ffffff;
}

.custom-input {
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 0.6rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    border-color: orange;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    background: #000;
    color: #fff;
}

/* 🔴 Error styles */
.custom-input.error {
    border-color: #e74c3c !important;
    box-shadow: none;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

.text-orange {
    color: orange;
}

div#server-message.success {
    color: green
}

div#server-message.error {
    color: #e74c3c
}

.region-card {
    background: var(--orangedark);
    color: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(0deg, #e6831270, transparent);
    border: 1px solid var(--orange);
    height: 100%;
    display: flex;
}

.region-card h4 {
    margin: auto;
    font-weight: 600;
    font-size: 1.2rem;

}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

.logos-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(60%);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%) brightness(100%);
}