:root {
    /* YOUR DESIGN TOKENS */
    --body-bg: #000000;
    --section-bg: #0f0f0f;
    --btn-color: #fd5902;

    --text-color: #ffffff;
    --footer-text: #727272;
    --boxbk: #0f0f0f;
    --white: #ffffff;
    --border-dark: #212121;

    /* 🔑 OVERRIDE BOOTSTRAP VARIABLES */

    --bs-body-bg: var(--body-bg);
    --bs-body-color: var(--text-color);
    --bs-body-font-family: 'gotham', sans-serif;

}



html,
body {
    height: 100%;
    margin: 0;
    background: var(--body-bg);
    color: var(--text-color);
    /* font-family: "Inter", sans-serif; */
    font-family: 'gotham';
}

li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
input {
    font-family: 'gotham';
}

.pullctatop {
    margin-top: -9rem;
}

/* Override Bootstrap container max-width */
.container {
    max-width: 1320px;
}


a.btn.btn-demo:hover {
    border: 1px solid #fd5902;
    color: #fff;
}

a.btn-demo-lg:hover {
    background: transparent;
    border: 2px solid var(--btn-color);
}

img {
    max-width: 100%;
}


.gradient-hero {
    position: relative;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 35%,
            #555555 50%,
            #ffffff 65%,
            #ffffff 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textSweep 3s linear infinite;
}

@keyframes textSweep {
    from {
        background-position: 300% 0;
    }

    to {
        background-position: 0% 0;
    }
}











/* ------------------ HERO BACKGROUND ------------------ */

body.post-type-archive-applications .hero,
body.post-type-archive-case-studies .hero,
body.post-type-archive-support .hero,
body.post-type-archive-faqs .hero {
    min-height: auto;
    padding-bottom: 0px;
}

.contact-hero-text {
    padding-bottom: 6rem;
}

body.home .hero {
    align-items: center;
}

.form-control:focus {
    box-shadow: none;
}

input#searchInput::placeholder {
    color: #fff;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    justify-content: center;

    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 50px;
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    /* background-image: url("assets/img/A20.svg"); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    /* or cover – see below */

    z-index: 1;
    pointer-events: none;
}


/* ------------------ HERO CONTENT ------------------ */

.hero-main {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-content-wrapper {
    width: 100%;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    margin-bottom: 40px;
}

.category-pill img {
    width: 20px;
    margin-right: 10px;
}

.category-pill .arrow {
    margin-left: 8px;
    font-size: 16px;
}

.hero-title {
    font-size: 65px;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 26px;
    width: 100%;
    max-width: 100%;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-demo-lg {
    background: var(--btn-color);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-signup-lg {
    background: var(--white);
    color: #000;
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-desc {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-desc {
        font-size: 16px;
        text-align: left;
    }

    .category-pill {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .btn-demo-lg,
    .btn-signup-lg {
        text-align: center;
        width: 100%;
    }
}


/* Tablet mockup wrapper */
.hero-tablet-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    /* spacing from buttons */
    position: relative;
    z-index: 5;
}

/* Tablet image */
.hero-tablet-img {
    width: 1000px;
    /* your resized width */
    max-width: 55%;
    /* responsive scaling */
    height: auto;
    display: block;
    animation: tabletFadeIn 1.4s ease-out forwards;
    opacity: 0;
}

/* Fade in effect */
@keyframes tabletFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.boxeffect {
    transition: transform 0.7s ease;
}

.boxeffect:hover {
    transform: translateY(-5px);
    cursor: pointer;

}

h2.testimonial-title {
    font-size: 50px;
    font-weight: 700;
}

/* Full-width marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* RESPONSIVE VISIBILITY COUNT */
/* DESKTOP (3 visible) */
@media (min-width: 1200px) {
    .marquee-content {
        padding-left: calc((100vw - (400px * 3 + 24px * 2)) / 2);
        padding-right: calc((100vw - (400px * 3 + 24px * 2)) / 2);
    }
}

/* TABLET (2 visible) */
@media (max-width: 1199px) and (min-width: 768px) {
    .marquee-content {
        padding-left: calc((100vw - (400px * 2 + 24px)) / 2);
        padding-right: calc((100vw - (400px * 2 + 24px)) / 2);
    }
}

/* MOBILE (1 visible) */
@media (max-width: 767px) {
    .marquee-content {
        padding-left: calc((100vw - 400px) / 2);
        padding-right: calc((100vw - 400px) / 2);
    }
}

/* Row content */
.marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Cards wrapper */
.card-group-set {
    display: inline-flex;
    gap: 24px;
}

/* Animations */
.marquee-left .marquee-content {
    animation: marquee-left 70s linear infinite;
}

.marquee-right .marquee-content {
    animation: marquee-right 70s linear infinite;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* CARD STYLE */
.testimonial-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 26px;
    border-radius: 22px;
    width: 400px;
    flex-shrink: 0;
}

/* Two-column layout */
.t-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Left icon column */
.t-icon-col {

    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
}

/* Icon wrapper (unchanged circle) */
/* .t-icon {
    width: 42px;
    height: 42px;
    background: #fd5902;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG fits perfectly */
.t-icon-img {
    width: 31px;

    object-fit: contain;
}

*/

/* Right content */
.t-content {
    flex: 1;
}

.t-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.t-company {
    margin: 2px 0 10px;
    font-size: 14px;
    color: #fd5902;
}

/* Pause marquee on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused !important;
}

.t-text {
    font-style: italic;
    opacity: 0.85;
}


.faq-heading-top {
    color: var(--btn-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-heading-main {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-subtext {
    font-size: 18px;
    opacity: 0.85;
}

.faq-subtext a {
    color: var(--btn-color);
    text-decoration: none;
}

/* Accordion Styling */
/* No border by default */
.faq-accordion .accordion-item {
    background: #111;
    border: 1px solid transparent;
    /* hidden border (keeps layout stable) */
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

/* Border appears on hover */
.faq-accordion .accordion-item:hover {
    border-color: var(--btn-color);

}

.faq-accordion .accordion-button {
    background: #111;
    color: #fff;
    padding: 24px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: none;

}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: #111;

}


.faq-accordion .accordion-body {
    background: var(--boxbk);
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 20px;
    padding-top: 0px;
    padding-left: 24px;
    padding-right: 24px;

}

/* Replace default arrow with minimal right-arrow */
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 3.5L10.5 8L5.5 12.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

/* Application starts */
.industry-section {

    text-align: center;
}

.industry-title {
    font-size: 50px;
    font-weight: 700;
}

.industry-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-top: 12px;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 260px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.40s ease;
}

/* Gradient overlay bottom */
.industry-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    border-radius: 20px;
    z-index: 3;
}

/* Overlay content container */
.industry-card .overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 4;
    transition: all 0.35s ease;
}

/* Title always visible */
.industry-card .overlay .title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    text-align: left;
}

/* Description (hidden until hover) */
.industry-card .overlay .desc {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    margin-top: 8px;
    transition: all 0.35s ease;
    color: rgba(255, 255, 255, 0.85);
    max-height: 0;
    overflow: hidden;
    text-align: left;
}

/* Hover Effects */
.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Reveal description smoothly */
.industry-card:hover .desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

.industry-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    border-radius: 20px;
}

/* application ends */

/* counter section starts */


/* ------------------------------ */
/* FADE ONLY FOR BOTTOM COUNTERS  */
/* ------------------------------ */
.counter-fade-wrap {
    position: relative;
    overflow: hidden;
}

/* Fade overlays */
.counter-fade-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 90px;
    z-index: 5;
    pointer-events: none;
}

.counter-fade-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 40%;

    z-index: 5;
    pointer-events: none;
}

.counter-fade-wrap::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.counter-fade-wrap::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* Tablet */
@media (max-width: 991px) {

    .counter-fade-wrap::before,
    .counter-fade-wrap::after {
        width: 120px;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .counter-fade-wrap::before,
    .counter-fade-wrap::after {
        width: 80px;
    }
}

/* ------------------------------ */
/*   TEXT & COUNTER STYLING       */
/* ------------------------------ */

.counter-big {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
}

.counter-label {
    font-size: 28px;
    margin-top: 10px;
    opacity: 0.9;
}

.counter-desc {
    font-size: 21px;
    max-width: 460px;
    opacity: 0.85;
}

.counter-small {
    font-size: 60px;
    font-weight: 700;
    color: #fd5902;
    line-height: 1;
}

.counter-small-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 6px;

    margin-left: auto;
    margin-right: auto;
}

/* counter section ends */


/* logo scroller starts */
.logo-scroller-section {
    backgroundvar(--body-bg);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.logo-scroller-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll-left 45s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    opacity: 0.85;
    transition: opacity 0.3s ease;
    padding: 0px 25px;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    width: auto;
    height: 35px;
}

/* Fade Edges */
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* Keyframes for infinite scrolling */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* logo scroller ends */


/* subproducts starts */
/* Section wrapper */
.subproducts-section {

    padding-top: 80px;
    padding-bottom: 80px;
}

/* Common border wrapper for both columns */
.common-border-wrapper {

    border: 1px solid var(--btn-color);
    border-radius: 16px;
    overflow: hidden;
    padding: 30px 30px;
}

/* Left box - No border now */
.sub-left-box {

    padding: 40px;
    height: 100%;
    /* Makes it fill the column height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically centers content */
}

.sub-left-icon {
    width: 54px;
    margin-bottom: 20px;
}

.sub-left-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.sub-left-title .accent {
    color: var(--btn-color);
}

.sub-left-desc {
    color: #e0e0e0;
    opacity: .9;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.sub-explore-btn {
    background: var(--btn-color);
    color: var(--text-color);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 125px;
}

.sub-explore-btn:hover {
    background: #e04e00;
}

/* Grid (4 columns desktop) */
.sub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 40px;

    min-height: 100%;

}

/* Card */
.sub-card {
    background: var(--section-bg);
    border-radius: 14px;
    padding: 64px 22px;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;

    transition: 0.22s ease;
}

.sub-card:hover {

    background: #111;
}

img.sub-icon {
    margin-right: 14px;
    width: 30px;
}



/* Text right: two lines */
.sub-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Brand line (MISSIONOS) */
.brand {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-color);
    display: inline-block;
}

/* OS accent inside brand */
.os {
    color: var(--btn-color);
}

/* Role / descriptor line (smaller) */
.role {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #cfcfcf;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .sub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .sub-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .sub-left-box {
        padding: 30px;
    }

    /* Remove common border on mobile and add individual borders */
    .common-border-wrapper {
        border: none;
        background: transparent;
        border-radius: 0;

    }

    .sub-left-box {
        background: var(--section-bg);
        border: 1px solid var(--btn-color);
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .sub-grid {
        background: transparent;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .sub-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sub-left-box {
        text-align: center;
        padding: 25px;
    }

    .sub-card {
        justify-content: flex-start;
        min-height: 76px;
        padding: 25px 20px;
    }

    .sub-left-title {
        font-size: 24px;
    }

    /* Center the content on mobile */
    .sub-left-box {
        display: block;
    }
}

/* subproducts ends */