@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Gabarito:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


/* ===== Base / Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "inter", sans-serif !important;
}

body {
    overflow-x: hidden;
    font-family: "inter", sans-serif !important;
    background: #fff !important;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1000px !important;
    margin: 0 auto;
    padding: 0;
}

/* ===== Keyframes (single definitions) ===== */
@keyframes infinite-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes portfolio-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@keyframes badge-marquee-left {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Tech marquee: scroll right, seamless loop (no blank) */
@keyframes tech-marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.tech-marquee-track {
    animation: tech-marquee-right 24s linear infinite;
}

/* CRO section marquee: seamless, no blank */
@keyframes cro-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.cro-marquee-track {
    animation: portfolio-marquee 20s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Testimonial cards marquee: seamless left scroll, no blank */
@keyframes testimonial-marquee {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonial-marquee-track {
    display: flex;
    width: max-content;
    animation: testimonial-marquee 45s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.testimonial-marquee-wrapper:hover .testimonial-marquee-track {
    animation-play-state: paused;
}

/* ===== Brand marquee ===== */
.brand-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    animation: infinite-marquee 24s linear infinite;
}

.brand-card {
    min-width: 140px;
    height: 105px;
}

/* ===== Portfolio marquee ===== */
.portfolio-marquee {
    overflow: hidden;
    border-radius: 1.5rem;
    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%);
    -webkit-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%);
}

.portfolio-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    padding: 1.25rem;
    animation: portfolio-marquee 80s linear infinite;
}

.portfolio-panel {
    width: 301px;
    border-radius: 1rem;
}

.portfolio-hero {
    height: 165px;
    border-radius: 0.8rem;
    padding: 1rem;
    color: #fff;
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.portfolio-circles {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.portfolio-circles span {
    aspect-ratio: 1/1;
    border-radius: 9999px;
    border: 1px solid #e8e8e8;
}

.portfolio-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.portfolio-grid div {
    height: 74px;
    border-radius: 0.6rem;
}

/* ===== Badge marquee ===== */
.badge-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.badge-marquee-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    padding: 0.45rem 0;
}

.badge-marquee-right {
    animation: badge-marquee-right 40s linear infinite;
}

.badge-marquee-left {
    animation: badge-marquee-left 40s linear infinite;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
    border-radius: 9999px;
    border: 1px solid #f4baad;
    background: #fff;
    color: #171717;
    padding: 16px 28px;
    font-size: 2.05rem;
    font-weight: 600;
    line-height: 1;
}

.badge-pill-icon {
    color: #ff693f;
    font-size: 1.65rem;
    line-height: 1;
}

/* ===== Showcase section ===== */
.showcase-section {
    border-radius: 1.75rem;
    padding: 2.6rem 2rem 2.8rem;
}

.showcase-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 1.8rem;
}

.showcase-marquee::before,
.showcase-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.showcase-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 25%, rgba(255, 255, 255, 0));
}

.showcase-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 25%, rgba(255, 255, 255, 0));
}

.showcase-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: portfolio-marquee 80s linear infinite;
}

.showcase-item {
    width: 305px;
    height: 430px;
    border: 1px solid #ececec;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #fff;
    flex: 0 0 auto;
}

.showcase-topbar {
    height: 16px;
    background: #1f1f1f;
}

.showcase-screen {
    height: calc(100% - 16px);
    padding: 0.8rem;
    display: grid;
    gap: 0.65rem;
    background: #f8f8f8;
}

.showcase-banner {
    height: 124px;
    border-radius: 0.5rem;
}

.showcase-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.showcase-row span,
.showcase-wide {
    border-radius: 0.4rem;
    background: #ececec;
}

.showcase-row span {
    height: 54px;
}

.showcase-wide {
    height: 76px;
}
.pm-upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.pm-upload-box {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #bbbbbb26;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    position: relative;
    font-size: 12px;
    color: #6b7280;
}

/* ===== Form validation + disabled state ===== */
label.error {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #dc2626; /* red-600 */
}

input.error,
select.error,
textarea.error {
    border-color: #dc2626 !important;
    background-color: #fee2e2 !important; /* red-100 */
}

.disable-submit:disabled,
.disable-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.disable-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loader {
    width: 14px;
    height: 14px;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.submit_contact_detail_res p {
    margin: 0;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.submit_contact_detail_res .processing-msg {
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid #93c5fd;
}

.submit_contact_detail_res .success-msg {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
}

.submit_contact_detail_res .error-msg {
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fca5a5;
}