/* common Buttton */

:root {
    --primary-color: #fe4a23;
    --secondary-color: #774dff;
    --blue-color: #0082f3;
    --main-black: #000000;
    --main-white: #ffffff;
    --sliver: #858585;
    --gray: #e5e5e5;
    --dark-gray: #737373 --subserv-primary: #0284c7;
    --subserv-primary-glow: rgba(2, 132, 199, 0.25);
    --subserv-accent: #00d2ff;
    --subserv-accent-glow: rgba(0, 210, 255, 0.25);
    --subserv-secondary: #2563eb;
    --subserv-light-bg: #ffffff;
    --subserv-card-bg: #ffffff;
    --subserv-card-border: rgba(0, 0, 0, 0.08);
    --subserv-card-hover-border: rgba(2, 132, 199, 0.45);
    --subserv-text-title: #0f172a;
    --subserv-text-body: #475569;
    --subserv-text-muted: #64748b;
    --subserv-font-heading: 'Inter', sans-serif;
    --subserv-font-body: 'Inter', sans-serif;
    /* Colors */
    --color-bg: #fafbfd;
    /* Clean soft off-white */
    --color-white: #ffffff;
    --color-primary: #3b82f6;
    /* Modern Blue */
    --color-primary-dark: #1d4ed8;
    --color-accent-purple: #6366f1;
    /* Deep Indigo/Purple */
    --color-accent-orange: #ff5722;
    /* Orange Accent */
    --color-orange-hover: #e64a19;
    --color-text-dark: #0f172a;
    /* Slate Black */
    --color-text-medium: #475569;
    /* Slate Gray */
    --color-text-muted: #94a3b8;
    --color-border: #e2e8f0;

    /* Service Categories brand accent colors */
    --color-core: #0d9488;
    /* Teal */
    --color-exchange: #3b82f6;
    /* Blue */
    --color-wallets: #8b5cf6;
    /* Purple */
    --color-web3: #ec4899;
    /* Pink */
    /* Transitions & Shadows */
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.02);
    --shadow-premium: 0 20px 40px -15px rgba(9, 13, 22, 0.05), 0 8px 16px -8px rgba(9, 13, 22, 0.03);
    --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Inter', sans-serif;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    vertical-align: baseline;
    display: inline-block
}

audio:not([controls]) {
    height: 0;
    display: none
}

[hidden],
template {
    display: none
}

a {
    background-color: #0000
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    margin: .67em 0;
    font-size: 2em
}

p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Inter';
}

mark {
    color: #000;
    background: #ff0
}

small {
    font-size: 80%
}

sub,
sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: none
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}


body {
    margin: 0
}

.btn-primary-orange,
.btn-secondary-gray,
.btn-primary-purple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px 24px;
    border: 0;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-primary-orange {
    color: var(--main-white);
    background-color: var(--primary-color);
}

.btn-primary-purple {
    color: var(--main-white);
    background-color: var(--secondary-color);
}

.btn-secondary-gray {
    color: var(--main-black);
    background-color: var(--gray);
}

.btn-primary-orange::before,
.btn-primary-orange::after,
.btn-secondary-gray::before,
.btn-secondary-gray::after,
.btn-primary-purple::before,
.btn-primary-purple::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    z-index: -1;
}

.btn-primary-orange::before {
    background-color: var(--secondary-color);
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
}

.btn-primary-orange::after {
    background-color: var(--secondary-color);
    transition: 0.8s ease;
    transition-delay: 0.4s;
}

.btn-primary-purple::before {
    background-color: var(--primary-color);
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
    -webkit-transition: 0.6s ease-in;
    -moz-transition: 0.6s ease-in;
    -ms-transition: 0.6s ease-in;
    -o-transition: 0.6s ease-in;
}

.btn-primary-purple::after {
    background-color: var(--primary-color);
    transition: 0.8s ease;
    transition-delay: 0.4s;
}

.btn-secondary-gray::before {
    background-color: var(--secondary-color);
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
    -webkit-transition: 0.6s ease-in;
    -moz-transition: 0.6s ease-in;
    -ms-transition: 0.6s ease-in;
    -o-transition: 0.6s ease-in;
}

.btn-secondary-gray::after {
    background-color: var(--secondary-color);
    transition: 0.8s ease;
    transition-delay: 0.4s;
}

.btn-primary-orange:hover::before,
.btn-primary-orange:hover::after,
.btn-secondary-gray:hover::before,
.btn-secondary-gray:hover::after,
.btn-primary-purple:hover::before,
.btn-primary-purple:hover::after {
    transform: translate(-50%, -50%) scale(500);
    -webkit-transform: translate(-50%, -50%) scale(500);
    -moz-transform: translate(-50%, -50%) scale(500);
    -ms-transform: translate(-50%, -50%) scale(500);
    -o-transform: translate(-50%, -50%) scale(500);
}

.btn-primary-orange span,
.btn-secondary-gray span,
.btn-primary-purple span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 20px;
    font-family: "Inter", sans-serif;
    transition: color 0.3s ease;
}

.btn-primary-orange .btn-icon,
.btn-secondary-gray .btn-icon,
.btn-primary-purple .btn-icon {
    line-height: unset;
    display: flex;
    align-items: center;
    margin-left: 8px;
    position: relative;
    z-index: 2;
}

.btn-primary-orange .btn-icon svg,
.btn-secondary-gray .btn-icon svg,
.btn-primary-purple .btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease, stroke 0.3s ease;
}

.btn-secondary-gray:hover,
.btn-secondary-gray:hover span {
    color: var(--main-white);
}

.btn-secondary-gray:hover .btn-icon svg {
    stroke: var(--main-white);
    transform: translateX(4px);
}

.btn-primary-orange:hover .btn-icon svg,
.btn-primary-purple:hover .btn-icon svg {
    transform: translateX(4px);
}

.btn-skyblue {
    color: var(--main-white);
    background-color: var(--blue-color);
    border: 1px solid var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1
}

.btn-skyblue::before,
.btn-skyblue::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background-color: #fff;
    transform: scaleY(0);
    transition: transform 0.35s ease;
    z-index: -1
}

.btn-skyblue::before {
    top: 0;
    transform-origin: top
}

.btn-skyblue::after {
    bottom: 0;
    transform-origin: bottom
}

.btn-skyblue:hover::before,
.btn-skyblue:hover::after {
    transform: scaleY(1)
}

.btn-skyblue:hover {
    color: var(--blue-color)
}

/* =========================================
   Creative Hero Section CSS
========================================= */

.container {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 15px;
}

/* Constellation Depth Background */
/* No background animations */

#hero-three-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.hero-gsap-creative {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.diorama-layer {
    position: absolute;
}

/* Right Side: Video */
.layer-video {
    right: 2%;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: absolute;
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 60vh;
    max-height: 520px;
    /* Set height on container to match original video height */
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 50, 150, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-video-background {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Removed lower opacity to make video clear */
}

/* Removed ::after overlay that was washing out the video */

/* Video Badges */
.video-badge {
    position: absolute;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    z-index: 10;
    white-space: nowrap;
}

.badge-top-left {
    top: -15px;
    left: -20px;
}

.badge-bottom-right {
    bottom: -15px;
    right: -20px;
}

.badge-highlight {
    color: #ff6b00;
    /* Orange GESIA color */
    font-weight: 700;
}

.badge-highlight-purple {
    color: #6c5ce7;
    /* Purple percentage */
    font-weight: 700;
}

/* Left Side: Text Content */
.hero-content-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.layer-text-group {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transform: translateZ(150px);
    pointer-events: auto;
}

/* Excellence Badge Creative Design */
.excellence-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    margin-bottom: 32px;
    border-radius: 100px;
    background: rgb(227 86 17 / 18%);
    backdrop-filter: blur(41px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

/* Subtle animated shine passing through */
.excellence-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    animation: shineBadge 4s infinite;
}

@keyframes shineBadge {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.experience-years-wrap {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #b80bff 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
    line-height: 1;
    display: flex;
    align-items: center;
}

.excellence-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4a5568;
    /* Slate gray */
    font-family: 'Inter', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
}

.hero-main-title {
    font-size: 33px;
    font-weight: 800;
    color: #0f172a;
    /* Dark clean text */
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
    /* Tighter gap to typing text */
    letter-spacing: -1px;
    line-height: 1.15;
}

.typing-container {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    text-align: left;
    text-shadow: none;
    color: #2c5364;
    padding: 0;
    min-height: 80px;
    margin-bottom: 20px;
    margin-top: 10px;
}

/* Web3 Services Section */
.web3-services-section {
    position: relative;
    padding: 100px 0;
    background: #0f172a;
    color: #fff;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.web3-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.web3-left-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.web3-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4facfe;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.web3-main-heading {
    font-size: 55px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
}

.web3-delivering-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background: #4facfe;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 0 10px #4facfe;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #4facfe;
    animation: indicatorPulse 1.5s infinite;
}

@keyframes indicatorPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.web3-delivering-badge .badge-text {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #4facfe;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.web3-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

/* Background Glowing Orbs */
.bento-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.bento-glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: #774dff7a;
    top: 10%;
    left: -10%;
}

.bento-glow-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(79, 172, 254, 0.4);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.bento-card {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transform-style: preserve-3d;
}

.bento-card:hover {
    border-color: rgba(79, 172, 254, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(79, 172, 254, 0.4);
    z-index: 2;
}

.bento-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
}

.bento-visual .lazy-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-visual .grid-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.bento-visual .grid-img-wrap img {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Brand Animation Block for Card 1 */
.bento-brand-anim-block {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: column;
    flex: none;
    margin-top: 0;
    display: flex;
    padding: 0;
}

.bento-brand-line {
    grid-column-gap: 0.6rem;
    grid-row-gap: 0.6rem;
    height: auto;
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
}

.bento-brand-item {
    flex: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-brand-img {
    position: static;
    width: 100%;
    height: 98px;
}

.bento-brand-img.abs {
    position: absolute;
    inset: 0%;
}

@keyframes bentoBrandFade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.bento-brand-img.abs.set-1 {
    animation: bentoBrandFade 3s infinite ease-in-out;
}

.bento-brand-img.abs.set-2 {
    animation: bentoBrandFade 4s infinite ease-in-out 1s;
}

.bento-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    padding: 10px 30px 20px 30px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-content .btn-bento-outline {
    margin-top: auto;
    align-self: center;
    margin-bottom: 0;
}

.bento-card:hover .bento-content {
    transform: translateY(0);
}

.bento-title {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.bento-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0;
}

.bento-actions {
    display: flex;
    gap: 10px;
}

.btn-bento-primary {
    margin-left: auto;
}

.btn-common-orange,
.btn-bento-outline {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.btn-common-orange {
    background: #ff6a00;
    color: white;
    border: none;
    margin-left: auto;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-common-orange img {
    width: 21px;
    height: 21px;
}

.bento-top-bar .btn-common-orange {
    border-radius: 0px 0px 0px 10px;
}

.btn-common-orange:hover {
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
    transform: translateY(-2px);
}

.btn-bento-outline {
    background: transparent;
    color: #4facfe !important;
    border: 1px solid #4facfe;
}

.btn-bento-outline:hover {
    background: rgba(79, 172, 254, 0.1);
}


.web3-timeline-wrap {
    margin: 50px 0;
    opacity: 0;
    position: relative;
}

.web3-timeline-line {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.web3-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b80bff, #4facfe);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.5);
}

.progress-glow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff, 0 0 30px #4facfe;
    opacity: 0;
}

.web3-timeline-points {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -7px;
    width: 100%;
    z-index: 2;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-point.start {
    align-items: flex-start;
}

.timeline-point.end {
    align-items: flex-end;
}

.point-dot {
    width: 20px;
    height: 20px;
    background: #0f172a;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-point.start .point-dot {
    border-color: #b80bff;
    background: #b80bff;
    box-shadow: 0 0 15px rgba(184, 11, 255, 0.6);
}

.point-year {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #64748b;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.timeline-point.start .point-year {
    color: #fff;
}

.web3-description {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
}

.web3-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-badge-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.rotating-badge {
    width: 100%;
    height: 100%;
    animation: rotateBadge 15s linear infinite;
}

.rotating-badge text {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    fill: #4facfe;
    letter-spacing: 3px;
}

@keyframes rotateBadge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.badge-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
}

.badge-center-icon img {
    width: 40px;
    filter: brightness(0) invert(1);
}

/* Innovate & Thrive Section */
.innovate-thrive-section {
    background-color: #f4f5f8;
    padding: 100px 0;

}

.innovate-flex-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

.innovate-badge-wrapper {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(254, 74, 35, 0.1);
    border: 1px solid rgba(254, 74, 35, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.pulse-indicator-orange {
    width: 10px;
    height: 10px;
    background: #fe4a23;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 0 10px #fe4a23;
}

.pulse-indicator-orange::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #fe4a23;
    animation: indicatorPulse 1.5s infinite;
}

.innovate-badge-wrapper .badge-text {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #fe4a23;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.innovate-heading {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.innovate-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 500;
}


/* Modern Web3 Case Studies Showcase Grid (Innovate & Thrive) */
.innovate-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.isg-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.isg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.6);
}

.isg-card-orange:hover {
    border-color: rgba(254, 74, 35, 0.4);
}

.isg-card-purple:hover {
    border-color: rgba(119, 77, 255, 0.4);
}

.isg-card-blue:hover {
    border-color: rgba(0, 130, 243, 0.4);
}

.isg-card-red:hover {
    border-color: rgba(229, 57, 53, 0.45);
}

/* Ambient Backglow on hover */
.isg-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.isg-card:hover .isg-card-glow {
    opacity: 0.35;
}

.isg-card-orange .isg-card-glow {
    background: #fe4a23;
}

.isg-card-purple .isg-card-glow {
    background: #774dff;
}

.isg-card-blue .isg-card-glow {
    background: #0082f3;
}

.isg-card-red .isg-card-glow {
    background: #e53935;
}

/* Card Header Top */
.isg-card-top {
    position: relative;
    z-index: 1;
    padding: 22px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.isg-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.isg-pill-orange {
    background: rgba(254, 74, 35, 0.08);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.25);
}

.isg-pill-purple {
    background: rgba(119, 77, 255, 0.08);
    color: #774dff;
    border: 1px solid rgba(119, 77, 255, 0.25);
}

.isg-pill-blue {
    background: rgba(0, 130, 243, 0.08);
    color: #0082f3;
    border: 1px solid rgba(0, 130, 243, 0.25);
}

.isg-pill-red {
    background: rgba(229, 57, 53, 0.08);
    color: #e53935;
    border: 1px solid rgba(229, 57, 53, 0.25);
}

.isg-number {
    font-size: 13px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Media Box */
.isg-media-wrap {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.isg-image-frame {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #edf2f7 100%);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.isg-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.isg-card:hover .isg-image-frame img {
    transform: scale(1.05);
}

.isg-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(15, 23, 42, 0.35) 100%);
    pointer-events: none;
}

.isg-status-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.isg-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.isg-dot-orange {
    background: #fe4a23;
    box-shadow: 0 0 6px #fe4a23;
}

.isg-dot-purple {
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa;
}

.isg-dot-blue {
    background: #38bdf8;
    box-shadow: 0 0 6px #38bdf8;
}

.isg-dot-red {
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
}

/* Card Body Content */
.isg-card-body {
    position: relative;
    z-index: 1;
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.isg-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.isg-card-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 24px 0;
    min-height: 72px;
}

/* Key Metrics Grid */
.isg-metrics-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.isg-metric-item {
    text-align: center;
    flex: 1;
}

.isg-metric-val {
    font-size: 19px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    display: block;
    line-height: 1.2;
}

.isg-text-orange {
    color: #fe4a23;
}

.isg-text-purple {
    color: #774dff;
}

.isg-text-blue {
    color: #0082f3;
}

.isg-text-red {
    color: #e53935;
}

.isg-metric-lbl {
    font-size: 10.5px;
    font-weight: 600;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 3px;
    display: block;
}

.isg-metric-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
}

/* Tech Stack Chips */
.isg-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.isg-tech-chip {
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.isg-card:hover .isg-tech-chip {
    border-color: #cbd5e1;
    background: #f1f5f9;
    color: #0f172a;
}

/* CTA Action Button */
.isg-card-footer {
    margin-top: auto;
}

.isg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.isg-btn-orange {
    background: #fe4a23;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(254, 74, 35, 0.25);
}

.isg-btn-orange:hover {
    background: #e63e18;
    box-shadow: 0 8px 22px rgba(254, 74, 35, 0.4);
    transform: translateY(-2px);
}

.isg-btn-purple {
    background: #774dff;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(119, 77, 255, 0.25);
}

.isg-btn-purple:hover {
    background: #6236e8;
    box-shadow: 0 8px 22px rgba(119, 77, 255, 0.4);
    transform: translateY(-2px);
}

.isg-btn-blue {
    background: #0082f3;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 130, 243, 0.25);
}

.isg-btn-blue:hover {
    background: #006ecf;
    box-shadow: 0 8px 22px rgba(0, 130, 243, 0.4);
    transform: translateY(-2px);
}

.isg-btn-red {
    background: #e53935;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.28);
}

.isg-btn-red:hover {
    background: #cc2b27;
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.42);
    transform: translateY(-2px);
}

.isg-btn-arrow {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.isg-btn:hover .isg-btn-arrow {
    transform: translateX(4px);
}

/* Bottom Bar */
.innovate-bottom-bar {
    margin-top: 48px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

.ibb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fe4a23;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ibb-sparkle {
    color: #fe4a23;
}

.ibb-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.ibb-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #0f172a;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ibb-view-all-btn:hover {
    background: #fe4a23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.3);
}

.ibb-view-all-btn svg {
    transition: transform 0.3s ease;
}

.ibb-view-all-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Styles for Innovate & Thrive Showcase */
@media (max-width: 1024px) {
    .innovate-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .innovate-showcase-grid .isg-card:nth-child(3) {
        grid-column: span 2;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .innovate-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .innovate-showcase-grid .isg-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .isg-card-desc {
        min-height: auto;
    }

    .innovate-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ibb-action,
    .ibb-view-all-btn {
        width: 100%;
        justify-content: center;
    }

    .innovate-flex-container {
        grid-template-columns: 1fr;
    }
}

.inquiry-section {
    display: flex;
    justify-content: end;
    margin: 20px 0px 0px 0px;
}

/* Client Family Section Styles (Modern Bento + Dual-Row Marquee) */
.client-family-section {
    background-color: #0d0d0e;
    position: relative;
    padding-top: 90px;
    padding-bottom: 110px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background Ambient Glow */
.cf-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 380px;
    background: radial-gradient(circle, rgba(231, 81, 36, 0.12) 0%, rgba(231, 81, 36, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.client-family-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.client-family-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    gap: 30px;
}

.cf-header-content {
    max-width: 680px;
}

.cf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(231, 81, 36, 0.12);
    border: 1px solid rgba(231, 81, 36, 0.3);
    border-radius: 50px;
    color: #ff7a45;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.cf-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E75124;
    box-shadow: 0 0 8px #E75124;
    animation: cfPulse 2s infinite ease-in-out;
}

@keyframes cfPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.client-family-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cf-highlight {
    background: linear-gradient(135deg, #E75124 0%, #FF7A45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cf-subtitle {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cf-header-brand {
    flex-shrink: 0;
}

.client-family-logo {
    height: 80px;
    max-width: max-content;
    object-fit: contain;
    opacity: 0.25;
    filter: brightness(1.2);
    transition: opacity 0.3s ease;
}

.client-family-logo:hover {
    opacity: 0.5;
}

/* Stats Section Header */
.cf-stats-header {
    text-align: center;
    max-width: 780px;
    margin: 55px auto 35px auto;
    position: relative;
    z-index: 2;
}

.cf-stats-header .cf-badge {
    margin-bottom: 16px;
}

.cf-stats-title {
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cf-stats-subtitle {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 620px;
}

/* Bento Stats Grid */
.cf-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cf-stat-card {
    position: relative;
    padding: 26px 28px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    min-height: 126px;
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    overflow: hidden;
}

.cf-stat-card:hover {
    transform: translateY(-5px);
}

.cf-stat-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.cf-stat-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cf-stat-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
}

.cf-stat-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.25;
}

.cf-stat-desc {
    font-size: 13.5px;
    line-height: 1.55;
}

/* Card 1: Projects (Dark Tech Theme) */
.cf-stat-projects {
    background: linear-gradient(145deg, #19191c 0%, #121214 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cf-stat-projects:hover {
    box-shadow: 0 16px 40px rgba(231, 81, 36, 0.15), inset 0 1px 0 rgba(231, 81, 36, 0.3);
    border-color: rgba(231, 81, 36, 0.35);
}

.cf-stat-projects .cf-stat-icon-wrapper {
    background: rgba(231, 81, 36, 0.15);
    color: #E75124;
    border: 1px solid rgba(231, 81, 36, 0.25);
}

.cf-stat-projects .cf-stat-number {
    color: #ffffff;
}

.cf-stat-projects .cf-stat-label {
    color: #f3f4f6;
}

.cf-stat-projects .cf-stat-desc {
    color: #9ca3af;
}

/* Card 2: Countries (Signature Brand Orange) */
.cf-stat-countries {
    background-color: #E05320;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(224, 83, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cf-stat-countries:hover {
    box-shadow: 0 18px 45px rgba(224, 83, 32, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cf-stat-countries .cf-stat-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cf-stat-countries .cf-stat-number {
    color: #ffffff;
}

.cf-stat-countries .cf-stat-label {
    color: #ffffff;
}

.cf-stat-countries .cf-stat-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Card 3: Experts (Crisp White High-Contrast) */
.cf-stat-experts {
    background-color: #ffffff;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cf-stat-experts:hover {
    box-shadow: 0 18px 45px rgba(255, 255, 255, 0.2);
}

.cf-stat-experts .cf-stat-icon-wrapper {
    background: rgba(231, 81, 36, 0.12);
    color: #E75124;
    border: 1px solid rgba(231, 81, 36, 0.2);
}

.cf-stat-experts .cf-stat-number {
    color: #E75124;
}

.cf-stat-experts .cf-stat-label {
    color: #111827;
}

.cf-stat-experts .cf-stat-desc {
    color: #4b5563;
}

/* Logo Showcase Bar */
.cf-logos-showcase {
    position: relative;
    width: 100%;
}

.cf-showcase-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cf-marquee-row:first-child {
    padding-bottom: 0px;
}


.cf-showcase-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.cf-showcase-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #71717a;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Continuous Infinite Marquee */
.cf-marquee-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.cf-marquee-row {
    display: flex;
    overflow: visible;
    user-select: none;
    padding: 22px 0;
    margin-bottom: 0;
}

.cf-marquee-row:last-child {
    margin-bottom: 0;
}

.cf-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.cf-marquee-group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
}

.cf-marquee-row-left .cf-marquee-track {
    animation: cfScrollLeft 55s linear infinite;
}

.cf-marquee-row-right .cf-marquee-track {
    animation: cfScrollRight 60s linear infinite;
}

/* Pause ONLY when directly hovering over an actual logo card */
.cf-marquee-track:has(.cf-brand-card:hover) {
    animation-play-state: paused;
}

@keyframes cfScrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes cfScrollRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Individual Brand Logo Card */
.cf-brand-card {
    flex: 0 0 170px;
    width: 170px;
    height: 76px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 16px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Light Card Logo: Multiply blend mode eliminates white/off-white background artifacts; inset clip-path removes any 1px image borders */
.cf-brand-card:not(.cf-brand-card-dark) img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    user-drag: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Sleek Dark Card for white-text logos and rich dark brand assets */
.cf-brand-card.cf-brand-card-dark {
    background: linear-gradient(145deg, #1c1e26 0%, #111217 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.cf-brand-card.cf-brand-card-dark img {
    max-width: 132px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: normal !important;
    clip-path: none !important;
    border-radius: 6px;
    user-drag: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Hover Interaction: Brand orange glow & lift */
.cf-brand-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(231, 81, 36, 0.4);
    border-color: #E75124 !important;
    z-index: 30;
}

.cf-brand-card.cf-brand-card-dark:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 22px rgba(231, 81, 36, 0.45);
    border-color: #E75124 !important;
}

/* Development Services Section */
.devlopment-section-services {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.dev-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: rgba(254, 74, 35, 0.1);
    border: 1px solid rgba(254, 74, 35, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.dev-badge .shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(254, 74, 35, 0.2), transparent);
    transform: skewX(-20deg);
    animation: badgeShimmer 3s infinite;
}

.dev-badge .pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #fe4a23;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 0 rgba(254, 74, 35, 0.4);
    animation: pulseAnimationDev 2s infinite;
}

@keyframes pulseAnimationDev {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 74, 35, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(254, 74, 35, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 74, 35, 0);
    }
}

.dev-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #fe4a23;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dev-heading {
    font-size: 48px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px
}

.dev-grid {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, 1fr);
}

.dev-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--card-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1;
}

.dev-card-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--card-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 14px;
    z-index: 2;
}

/* Add dotted background top-right */
.dev-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--card-color) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    opacity: 0.3;
    z-index: 0;
}

/* Add bottom wave */
.dev-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: var(--card-color);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
    transition: all 0.3s ease;
}

/* Big background icon for creative but simple look */
.dev-card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    color: var(--card-color);
    opacity: 0.04;
    z-index: -1;
    transform: rotate(-15deg);
    transition: all 0.3s ease-in-out;
    object-fit: contain;
}

.dev-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.dev-card:hover::after {
    transform: scale(1.2);
    opacity: 0.12;
}

.dev-icon-wrap {
    width: 70px;
    height: 70px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

/* Faint colored circle behind the icon */
.dev-icon-wrap::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: var(--card-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.dev-card:hover .dev-icon-wrap {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.dev-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}

.dev-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--card-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.dev-card-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    position: relative;
    font-family: 'Inter', sans-serif;
    z-index: 2;
}

.dev-bg-shape {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.dev-bg-shape-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Professional CTA Banner Design */
.pro-cta-container {
    padding: 60px 20px 0px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.pro-cta-banner {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtle accent line at the top */
.pro-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fe4a23, #ff8c00);
}

.pro-cta-content {
    max-width: 65%;
}

.pro-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pro-cta-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.pro-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #fe4a23;
    padding: 16px 32px;
    border-radius: 12px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(254, 74, 35, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pro-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 74, 35, 0.35);
    background: #e03c16;
}

.pro-btn-text {
    margin-right: 10px;
}

.pro-btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.pro-cta-btn:hover .pro-btn-icon {
    transform: translateX(4px);
}

/*  Review css */

.section.is-testimonial {
    background-color: #fff;
    padding: 100px 0px;
    overflow: hidden;
}

.container.is-big {
    max-width: 95rem;
    position: relative;
}

.header-block {
    margin-bottom: 5.56rem;
}

.heading-7.text-align-center {
    color: #080808;
    text-align: center;
    font-size: 1.66667rem;
}

.haeding-block-testimonial {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    display: flex;
}

.first-line-testimoniall {
    height: 5rem;
    overflow: hidden;
}

.heading-2.text-align-center {
    color: var(--dark-black-900);
    text-align: center;
    font-size: 4.44rem;
    line-height: 100%;
}

.heading-2,
.icon-clutch-full-icon,
.first-line-testimonial,
.icon-clutch-small,
.heading-wrap-testimonial,
.icon-clutch-full {
    transition: all 0.7s ease;
}

.heading-wrap-testimoniall {
    grid-column-gap: 1.125rem;
    grid-row-gap: 1.125rem;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    width: 32rem;
    max-width: 35.5rem;
    height: 5.9rem;
    margin-top: -.3125rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.heading-2.text-align-center.size {
    white-space: nowrap;
    flex: 0 auto;
    width: 23rem;
    margin-top: .625rem;
    overflow: hidden;
    color: var(--dark-black-900);
    text-align: center;
    font-size: 4.44rem;
    line-height: 100%;
}

.heading-2.text-align-center.margin-2 {
    flex: none;
    margin-top: .625rem;
}

.icon-clutch-full {
    opacity: 1;
    flex: none;
    width: 4.5rem;
    height: 5.3rem;
    margin-top: 0;
    margin-left: .375rem;
    padding-left: 0;
    display: flex;
    position: relative;
    overflow: hidden;
}

.icon-clutch-small {
    width: 4.305rem;
    margin-top: .25rem;
    position: relative;
}

.icon-clutch-full-icon {
    opacity: 0;
    pointer-events: none;
    object-fit: cover;
    flex: none;
    width: 16.3rem;
    max-width: none;
    height: 5.2777rem;
    margin-top: 0;
    position: absolute;
    left: 0;
}

.burger-wrap,
.mob-menu,
.clutch-mob {
    display: none;
}

.swiper-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    display: flex;
}

.swiper-slide {
    grid-column-gap: 2.64rem;
    grid-row-gap: 2.64rem;
    color: #080808;
    cursor: pointer;
    background-color: #f5f5f5;
    border-radius: 1.6667rem;
    flex-flow: column;
    flex: none;
    width: 37.5rem;
    padding: 3.33rem 3.9rem 3.33rem 4.44rem;
    display: flex;
    position: relative;
}

.swiper-slide-top-block {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
    display: flex;
}

.body-b2 {
    font-size: 1.31944rem;
    line-height: 1.625rem;
}

.body-b4.dark-black-500 {
    color: #737373;
    font-size: 1.11rem;
    line-height: 1.25rem;
}

.raiting-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 1.2rem;
    display: flex;
}

.raiting-data {
    letter-spacing: -.77778rem;
    padding-top: 3.7rem;
    font-size: 7.77778rem;
    line-height: 51%;
}

.rate {
    width: 7.29rem;
}

.heading-5.max-w-380 {
    max-width: 30.9rem;
    font-size: 1.52778rem;
    line-height: 136%;
    transition: color 0.5s ease;
}

.btn-secondary.clutch {
    color: #080808;
    max-width: 17rem;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    grid-column-gap: 1.11rem;
    grid-row-gap: 1.11rem;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    max-width: 10.1rem;
    font-size: 1.11rem;
    line-height: 100%;
    display: flex;
}

.btn-text-wrap {
    height: 1.2rem;
    margin-top: 3px;
    padding-top: 2px;
    overflow: hidden;
    color: #191919;
}

.btn-text-secondary.second-txt {
    margin-top: .1rem;
}

.btn-icon-wrap {
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    flex-flow: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 2.78rem;
    height: 2.78rem;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #191919;
}

.icon-btn-secondary {
    flex: none;
    width: 1.6667rem;
    filter: invert(1);
}

/* ==========================================================================
   Industries We Serve Section - Premium Grid Layout
   ========================================================================== */

.industry-section {
    padding: 100px 0;
    background-color: #0b0f19;
    /* Premium dark background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.industry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.industry-header {
    text-align: center;
    margin-bottom: 60px;
}

.industry-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 46px;
    background: linear-gradient(90deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.industry-table-section {
    padding-top: 100px;
    padding-bottom: 120px;
    background-color: #0b0f19;
    /* Premium dark background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.industry-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.industry-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.industry-heading {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-align: center;
}

.industry-table-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.industry-table-row {
    position: relative;
    display: grid;
    grid-template-columns: 50px 320px 1fr;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    cursor: pointer;
    will-change: transform, opacity;
}

.industry-table-row::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00b4d8, transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-table-row.header-row {
    grid-template-columns: 50px 320px 1fr;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    cursor: default;
    padding-bottom: 20px;
}

.industry-table-row.item-row:hover {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    padding-left: 30px;
    border-bottom-color: transparent;
}

.industry-table-row.item-row:hover::after {
    width: 100%;
}

.col-number {
    font-size: 20px;
    font-weight: 500;
    color: #475569;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.industry-table-row.item-row:hover .col-number {
    color: #00b4d8;
}

.industry-row-title {
    font-size: 26px;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.industry-table-row.item-row:hover .industry-row-title {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.col-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: start;
}

.industry-pill {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 6px;
    /* Modern squared tech look */
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    will-change: transform, opacity;
}

/* Creative Tech Dot inside Badge */
.industry-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #334155;
    /* Dormant state */
    transition: all 0.3s ease;
}

.industry-table-row.item-row:hover .industry-pill {
    background: rgba(0, 180, 216, 0.05);
    border-color: rgba(0, 180, 216, 0.2);
    color: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.1);
}

.industry-table-row.item-row:hover .industry-pill::before {
    background: #00b4d8;
    box-shadow: 0 0 10px #00b4d8;
    /* Glows on hover */
}

/* Stagger floating effect for pills */
.industry-table-row.item-row:hover .industry-pill:nth-child(1) {
    transition-delay: 0.05s;
}

.industry-table-row.item-row:hover .industry-pill:nth-child(2) {
    transition-delay: 0.1s;
}

.industry-table-row.item-row:hover .industry-pill:nth-child(3) {
    transition-delay: 0.15s;
}

.industry-table-row.item-row:hover .industry-pill:nth-child(4) {
    transition-delay: 0.2s;
}

/* Creative Cursor Hover Card */
.cursor-hover-card {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 180, 216, 0.3);
    width: 220px;
    display: none;
}

.cursor-hover-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.cursor-hover-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    display: block;
}

.cursor-hover-title {
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Creative Blog Section
   ========================================================================== */

.creative-blog-section {
    background-color: #f9fafb;
    /* Light modern theme */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

.creative-blog-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(120, 50, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.creative-blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.creative-whatsapp-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.creative-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.creative-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.creative-whatsapp-btn .btn-icon {
    display: flex;
    align-items: center;
}

.creative-blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.creative-blog-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #111827;
    letter-spacing: -1px;
}

.creative-blog-title span {
    color: var(--primary-color);
}

.creative-blog-subtitle {
    font-size: 18px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.creative-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.creative-blog-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.creative-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
}

.creative-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.creative-blog-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f8fafc;
}

.creative-blog-img {
    width: 100%;
    height: 10.5rem;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
}

.creative-blog-card:hover .creative-blog-img {
    transform: scale(1.05);
}

.creative-read-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.creative-blog-card:hover .creative-read-badge {
    opacity: 1;
    transform: translateY(0);
}

.creative-blog-content {
    padding: 15px;
}

.creative-blog-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
    font-family: 'Inter';
}

.creative-blog-card:hover .creative-blog-heading {
    color: var(--primary-color);
}

.creative-blog-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.creative-no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    font-size: 20px;
    color: #6b7280;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #e5e7eb;
}

.creative-blog-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.creative-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(254, 74, 35, 0.3);
}

.creative-explore-btn:hover {
    transform: translateY(-3px);
    background: #e03c16;
    box-shadow: 0 15px 35px rgba(254, 74, 35, 0.4);
}

.creative-explore-btn .btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.creative-explore-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* =========================================
   Creative Unique Light Inquiry Section
========================================= */

.creative-inquiry-section {
    position: relative;
    padding: 80px 0;
    background-color: #fafcff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

/* Background Grid Pattern */
.creative-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(119, 77, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 77, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Floating Abstract Shapes */
.creative-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.creative-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: shapeFloat 10s infinite alternate ease-in-out;
}

.creative-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: #ffcf73;
    top: -100px;
    left: -100px;
}

.creative-bg-shapes .shape-2 {
    width: 500px;
    height: 500px;
    background: #774dff;
    bottom: -150px;
    right: -100px;
    animation-delay: -3s;
}

.creative-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: #4ade80;
    top: 40%;
    left: 40%;
    animation-delay: -7s;
    opacity: 0.3;
}

@keyframes shapeFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 40px) scale(1.2);
    }
}

.creative-inquiry-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.creative-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

/* Text Block Styles */
.creative-text-block {
    flex: 1;
    min-width: 340px;
    max-width: 550px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.creative-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(119, 77, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #774dff;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(119, 77, 255, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #774dff;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #774dff;
    border-radius: 50%;
    animation: pulsePing 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.creative-heading {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0f172a;
    letter-spacing: -1px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #774dff;
    position: relative;
    font-family: 'Lora';
    display: inline-block;
}

.creative-desc {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.creative-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-creative-solid {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #774dff 0%, #4facfe 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(119, 77, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-creative-solid .arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-creative-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(119, 77, 255, 0.4);
    color: #ffffff;
}

.btn-creative-solid:hover .arrow-icon {
    transform: translateX(5px);
}

.btn-creative-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-creative-outline:hover {
    border-color: #774dff;
    color: #774dff;
    box-shadow: 0 10px 20px rgba(119, 77, 255, 0.1);
}

.creative-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #fe4a23;
}

.contact-item .icon-wrap svg {
    width: 20px;
    height: 20px;
}

.contact-item a {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #774dff;
}

/* =========================================
   Coffee Cup & Smoking Animation
   ========================================= */

.cta-left.coffee-cup-box,
.coffee-cup-box {
    position: relative;
    width: 240px;
    height: 160px;
    margin-top: 25px;
    margin-left: 0;
    left: -70px;
    bottom: -70px;
    background-image: url('../images/Bg-CoffeeCub.png');
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    opacity: 0.88;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-left.coffee-cup-box:hover,
.coffee-cup-box:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* Smoke Holder positioned precisely at the center of the cup rim */
.smoke-holder {
    position: absolute;
    top: -60px;
    left: 62%;
    transform: translateX(-50%);
    width: 80px;
    height: 90px;
    z-index: 3;
    pointer-events: none;
}

.smoke-holder span {
    animation: smokie 2.2s linear infinite;
    position: absolute;
    border: 2px solid rgba(128, 128, 128, 0.6);
    background: rgba(128, 128, 128, 0.2);
    width: 2px;
    height: 10px;
    top: 70px;
    left: 40px;
    z-index: -1;
    filter: blur(2px);
    opacity: 0;
}

.smoke-holder span:nth-of-type(2) {
    animation-delay: 0.35s;
}

.smoke-holder span:nth-of-type(3) {
    animation-delay: 0.7s;
}

.smoke-holder span:nth-of-type(4) {
    animation-delay: 1.05s;
}

.smoke-holder span:nth-of-type(5) {
    animation-delay: 1.4s;
}

.smoke-holder span:nth-of-type(6) {
    animation-delay: 1.75s;
}

@keyframes smokie {
    0% {
        top: 70px;
        left: 40px;
        opacity: 0;
        transform: scale(1);
    }

    20% {
        opacity: 0.9;
    }

    25% {
        left: 35px;
    }

    50% {
        left: 42px;
        opacity: 0.7;
    }

    75% {
        left: 36px;
        opacity: 0.4;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        top: -60px;
        left: 40px;
        filter: blur(5px);
        opacity: 0;
        transform: scale(7.5);
    }
}

/* Form Block Styles */
.creative-form-block {
    flex: 1.2;
    min-width: 350px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.form-card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08),
        0 0 0 10px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: #64748b;
    line-height: 20px;
}

.form-header p a {
    color: #774dff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-header p a:hover {
    color: #fe4a23;
}

.creative-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

/* Ensure intl-tel-input plugin container takes full width if present */
.iti {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.c-input {
    width: 100%;
    box-sizing: border-box;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 16px 10px 16px;
    font-size: 16px;
    color: #0f172a;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.c-input:hover {
    background-color: #f1f5f9;
}

.c-input:focus {
    background-color: #ffffff;
    border-color: #774dff;
    box-shadow: 0 0 0 4px rgba(119, 77, 255, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.input-border {
    display: none;
}

.input-wrapper label {
    position: absolute;
    left: 17px;
    top: 16px;
    color: #64748b;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
}

.phone-wrapper {
    --phone-offset: 84px;
}

.phone-wrapper label {
    left: var(--phone-offset, 84px);
    top: 16px;
    transform-origin: left top;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

input.c-input:focus~label,
input.c-input:not(:placeholder-shown)~label,
textarea.c-input:focus~label,
textarea.c-input:not(:placeholder-shown)~label,
select.c-select:focus~label,
select.c-select:valid~label,
.input-wrapper:has(input.c-input:focus) label,
.input-wrapper:has(input.c-input:not(:placeholder-shown)) label,
.input-wrapper:has(select.c-select:focus) label,
.input-wrapper:has(select.c-select:valid) label,
.phone-wrapper input.c-input:focus~label,
.phone-wrapper input.c-input:not(:placeholder-shown)~label,
.phone-wrapper:has(input.c-input:focus) label,
.phone-wrapper:has(input.c-input:not(:placeholder-shown)) label {
    transform: translateY(-8px) scale(0.75);
    color: #774dff;
    font-weight: 600;
}

/* Hide plugin-injected placeholders on phone input to prevent overlap with our custom label */
.phone-wrapper ::placeholder {
    color: transparent !important;
}

/* Specific hack for select since placeholder doesn't apply */
.c-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #0f172a;
    padding: 22px 40px 10px 16px;
    /* Keep right padding so text doesn't overlap the custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
}

.c-select:invalid {
    color: transparent;
    /* Hide the empty value so it doesn't overlap the label before selection */
}

.c-select option {
    color: #0f172a;
}

.textarea-wrapper .c-input {
    min-height: 120px;
    resize: vertical;
    padding-top: 26px;
}

.textarea-wrapper label {
    top: 18px;
}

.textarea-wrapper .c-input:focus~label,
.textarea-wrapper .c-input:not(:placeholder-shown)~label {
    transform: translateY(-10px) scale(0.75);
}

.btn-creative-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.btn-creative-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #774dff, #fe4a23);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-creative-submit:hover::before {
    opacity: 1;
}

.btn-creative-submit .btn-text,
.btn-creative-submit .btn-icon {
    position: relative;
    z-index: 2;
}

.btn-creative-submit .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-creative-submit:hover .btn-icon {
    transform: translateX(5px);
    background: #ffffff;
    color: #fe4a23;
}

.submit-btn-wrap {
    display: flex;
    max-width: max-content;
    width: 100%;
    margin: 0 auto;
    margin-top: -10px;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: floatBadge 6s infinite ease-in-out;
    border: 1px solid #f1f5f9;
}

.floating-badge span {
    font-weight: 700;
    color: #0f172a;
}

.msg-success {
    color: #10b981;
    font-size: 14px;
    display: block;
}

.msg-error {
    color: #ef4444;
    font-size: 14px;
    display: block;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================================================
   Creative Footer Section (Compact & Sleek)
   ========================================================================== */

.cr-footer {
    position: relative;
    background: #07090e;
    color: #cbd5e1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    padding: 42px 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 10;
}

/* Top Glow Line */
.cr-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(254, 74, 35, 0.6) 25%, rgba(119, 77, 255, 0.8) 50%, rgba(0, 210, 255, 0.6) 75%, transparent 100%);
    z-index: 2;
}

/* Ambient Lighting Glows */
.cr-footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.cr-glow-1 {
    top: -60px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(119, 77, 255, 0.1) 0%, rgba(119, 77, 255, 0) 70%);
}

.cr-glow-2 {
    bottom: 30px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.07) 0%, rgba(254, 74, 35, 0) 70%);
}

.cr-footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Main Grid (5 Balanced Columns) */
.cr-footer-main-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1fr 1.6fr 1.65fr;
    gap: 26px;
    padding-bottom: 28px;
}

.cr-footer-nav-col {
    display: flex;
    flex-direction: column;
}

.cr-nav-section-top {
    min-height: 180px;
}

.cr-nav-section-bottom {
    margin-top: 10px;
}

/* Titles */
.cr-footer-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    white-space: nowrap;
}

.cr-title-dot {
    width: 5px;
    height: 5px;
    background: #fe4a23;
    border-radius: 50%;
    box-shadow: 0 0 6px #fe4a23;
    display: inline-block;
}

/* Navigation Links */
.cr-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cr-footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    position: relative;
    width: fit-content;
    line-height: 1.35;
    white-space: nowrap;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, padding-left 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cr-footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    color: #fe4a23;
    font-size: 13px;
    line-height: 1;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cr-footer-link:hover {
    color: #fe4a23;
    padding-left: 15px;
}

.cr-footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Offices List - EXACT ORIGINAL DESIGN */
.cr-offices-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cr-office-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px 11px;
    transition: all 0.2s ease;
}

.cr-office-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(119, 77, 255, 0.25);
    transform: translateY(-1px);
}

.cr-office-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
    gap: 8px;
}

.cr-office-city-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cr-office-pin {
    font-size: 12px;
}

.cr-office-city {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.cr-office-tag {
    font-size: 9px;
    font-weight: 700;
    background: rgba(254, 74, 35, 0.15);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.3);
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cr-office-addr {
    font-size: 13px;
    line-height: 1.35;
    color: #94a3b8;
    margin: 0;
}

.cr-office-phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #774dff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.cr-office-phone:hover {
    color: #a78bfa;
    text-decoration: underline;
}

/* Connect Column - EXACT ORIGINAL DESIGN */
.cr-footer-col-connect {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Touchpoints: Email + Socials */
.cr-connect-touchpoints {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px 12px;
}

.cr-footer-email-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cr-footer-email-link svg {
    color: #fe4a23;
}

.cr-footer-email-link:hover {
    color: #fe4a23;
    transform: translateX(2px);
}

/* Social Channels */
.cr-footer-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cr-social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cr-social-icon-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.cr-social-icon-btn:hover {
    transform: translateY(-2px);
}

.cr-social-icon-btn:hover img {
    transform: scale(1.1);
}

.cr-social-fb:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.45);
}

.cr-social-tw:hover {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
}

.cr-social-yt:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 14px rgba(255, 0, 0, 0.45);
}

.cr-social-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.45);
}

.cr-social-li:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.45);
}

.cr-social-wa:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

/* Newsletter Card */
.cr-newsletter-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 11px 13px;
    position: relative;
}

.cr-newsletter-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
}

.cr-newsletter-sparkle {
    font-size: 13px;
}

.cr-newsletter-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.cr-newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0d111a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 3px 3px 3px 10px;
    transition: all 0.2s ease;
}

.cr-newsletter-input-group:focus-within {
    border-color: #fe4a23;
    box-shadow: 0 0 0 2px rgba(254, 74, 35, 0.15);
}

.cr-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    min-width: 0;
    padding: 3px 0;
}

.cr-newsletter-input::placeholder {
    color: #64748b;
    font-size: 14px;
}

.cr-newsletter-btn {
    background: #fe4a23;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cr-newsletter-btn:hover {
    background: #e03c16;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(254, 74, 35, 0.3);
}

.cr-newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cr-newsletter-status {
    margin-top: 4px;
    min-height: 14px;
}

.cr-status-msg {
    font-size: 12px;
    display: block;
}

.cr-status-success {
    color: #10b981;
}

.cr-status-error {
    color: #ef4444;
}

/* Footer Bottom Bar */
.cr-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #64748b;
    gap: 16px;
    flex-wrap: wrap;
}

.cr-brand-highlight {
    color: #e2e8f0;
    font-weight: 500;
}

.cr-footer-attribution {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cr-attribution-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cr-attribution-link:hover {
    color: #fe4a23;
    text-decoration: underline;
}

/* ==========================================================================
   Creative Unique Light-Theme Inquiry Modal
   ========================================================================== */
.creative-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.creative-modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.creative-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.creative-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 660px;
}

/* Creative Porcelain White Modal Card */
.creative-modal-white-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 38px 40px 32px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.creative-modal-overlay.is-active .creative-modal-white-card {
    transform: scale(1) translateY(0);
}

/* Top Accent Gradient Bar */
.c-modal-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fe4a23 0%, #ff7300 35%, #774dff 75%, #00b4d8 100%);
    border-radius: 30px 30px 0 0;
}

/* Close Button */
.modal-white-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-white-close:hover {
    background: #fe4a23;
    border-color: #fe4a23;
    color: #ffffff;
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 16px rgba(254, 74, 35, 0.35);
}

/* Modal Header */
.creative-modal-white-card .form-header {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    padding-right: 36px;
}

.c-modal-top-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.c-modal-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px 3px 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.c-brand-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 50%;
}

.c-modal-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(119, 77, 255, 0.08);
    border: 1px solid rgba(119, 77, 255, 0.22);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #774dff;
}

.creative-modal-heading {
    font-size: 26px;
    font-weight: 800;
    color: #fe4a23;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.creative-modal-sub {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.c-email-link {
    display: inline-inline-flex;
    align-items: center;
    gap: 3px;
    color: #774dff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.c-email-link:hover {
    color: #fe4a23;
}

/* Form Styles */
.creative-modal-white-card .creative-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.creative-modal-white-card .form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.creative-modal-white-card .textarea-wrapper .c-input {
    min-height: 100px;
}

.modal-feedback-status {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
}

.c-modal-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 10px;
}

.c-modal-privacy-note svg {
    color: #10b981;
}

.container.is-big-container {
    max-width: 90rem;
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

/* Responsive Styles */


@media (max-width: 1367px) {
    .hero-video-container {
        height: 290px;
        max-height: 310px;
        width: 100%;
        max-width: 500px;
    }

    .video-badge {
        padding: 8px 18px;
        font-size: 12.5px;
    }

    .badge-top-left {
        top: -12px;
        left: -10px;
    }

    .badge-bottom-right {
        bottom: -12px;
        right: -10px;
    }
}

@media (max-width: 1281px) {
    .creative-heading {
        font-size: 46px;
    }

    .innovate-heading {
        font-size: 36px;
    }

    .bento-content {
        padding: 10px 15px 20px 15px;
    }

    .bento-desc {
        font-size: 13px;
    }

    .industry-row-title {
        font-size: 19px;
    }

    .industry-table-row,
    .industry-table-row.header-row {
        grid-template-columns: 50px 285px 1fr;
    }


    .industry-pill {
        font-size: 12px;
    }

    .dev-card-desc {
        font-size: 12px;
    }

    .dev-card-title {
        font-size: 14px;
    }

    .bento-title {
        font-size: 20px;
    }

    .sticky-card.cs-card {
        padding: 38px 32px;
        gap: 36px;
    }

    .sticky-card-heading {
        font-size: 28px;
    }

    .cr-footer-main-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }

    .cr-footer-nav-col {
        grid-column: span 2;
    }

    .cr-footer-col-locations {
        grid-column: span 3;
    }

    .cr-footer-col-connect {
        grid-column: span 3;
                justify-content: end;
    }
}

@media (max-width: 1024px) {

    .form-row {
        flex-direction: column;
    }

    .industry-table-row,
    .industry-table-row.header-row {
        grid-template-columns: 48px 230px 1fr;
        gap: 16px;
    }

    .col-services {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 10px;
    }

    .pro-cta-banner {
        padding: 25px;
    }

    .dev-heading {
        font-size: 38px;
    }

    .dev-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .web3-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-brand-anim-block {
        width: 100%;
    }

    .bento-brand-line {
        grid-column-gap: 1.6rem;
        grid-row-gap: 1.6rem;
    }

    .hero-gsap-creative {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-scene {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .hero-content-container {
        padding-left: 30px;
        padding-right: 30px;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .layer-text-group {
        width: 50%;
        max-width: 480px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-main-title {
        font-size: 28px;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 6px;
    }

    .typing-container {
        font-size: 38px;
        line-height: 1.15;
        min-height: 55px;
        margin-top: 4px;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .excellence-badge {
        padding: 8px 20px;
        margin-bottom: 0;
    }

    .experience-years-wrap {
        font-size: 24px;
    }

    .excellence-label {
        font-size: 13px;
    }

    .layer-video {
        width: 46%;
        right: 2%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-video-container {
        height: 200px;
        max-height: 215px;
        width: 100%;
        max-width: 350px;
        border-radius: 16px;
        box-shadow: 0 25px 60px rgba(0, 50, 150, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    }

    .hero-video-background {
        border-radius: 16px;
    }

    .video-badge {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 30px;
    }

    .badge-top-left {
        top: -12px;
        left: -10px;
    }

    .badge-bottom-right {
        bottom: -12px;
        right: -10px;
    }
}

@media (max-width: 991px) {
    .hero-gsap-creative {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-scene {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .hero-content-container {
        padding-left: 24px;
        padding-right: 24px;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .layer-text-group {
        width: 52%;
        max-width: 440px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-main-title {
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 6px;
    }

    .typing-container {
        font-size: 30px;
        line-height: 1.2;
        min-height: 54px;
        margin-top: 4px;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }

    .excellence-badge {
        padding: 6px 18px;
        margin-bottom: 0;
    }

    .experience-years-wrap {
        font-size: 22px;
    }

    .excellence-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .layer-video {
        width: 44%;
        right: 2%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-video-container {
        height: 185px;
        max-height: 195px;
        width: 100%;
        max-width: 310px;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 50, 150, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    }

    .hero-video-background {
        border-radius: 14px;
    }

    .video-badge {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 30px;
    }

    .badge-top-left {
        top: -8px;
        left: -6px;
    }

    .badge-bottom-right {
        bottom: -8px;
        right: -6px;
    }

    .sticky-card.cs-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 24px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .sticky-card.reverse {
        grid-template-columns: 1fr;
    }

    .sticky-card.reverse .sticky-card-image {
        order: 1;
    }

    .sticky-card.reverse .sticky-card-content {
        order: 2;
    }

    .sticky-card:nth-child(1) {
        top: 80px;
    }

    .sticky-card:nth-child(2) {
        top: 100px;
    }

    .sticky-card:nth-child(3) {
        top: 120px;
    }

    .cr-footer-main-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }

    .cr-footer-nav-col {
        grid-column: span 2;
    }

    .cr-footer-col-locations {
        grid-column: span 3;
    }

    .cr-footer-col-connect {
        grid-column: span 3;
    }

    .cr-nav-section-top {
        min-height: 170px;
    }

    .creative-content-wrapper {
        flex-direction: column;
    }

    .creative-heading {
        font-size: 48px;
    }

    .form-row {
        flex-direction: row;
        gap: 25px;
    }

    .floating-badge {
        left: 20px;
        bottom: -20px;
    }

    .form-card-glass {
        padding: 40px 30px;
    }

    .industry-heading {
        font-size: 32px;
    }

    .industry-table-section {
        padding: 60px 0;
    }

    .industry-table-row,
    .industry-table-row.header-row {
        grid-template-columns: 42px 185px 1fr;
        gap: 16px;
        padding: 20px 14px;
        align-items: center;
    }

    .industry-table-row.header-row {
        display: grid;
        padding-bottom: 16px;
        font-size: 12.5px;
    }

    .industry-row-title {
        font-size: 20px;
    }

    .col-number {
        font-size: 16px;
    }

    .col-services {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 10px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }

    .industry-pill {
        font-size: 12.5px;
        padding: 6px 13px;
        white-space: nowrap;
    }

    .industry-table-row.item-row:hover {
        padding-left: 20px;
    }

    .cursor-hover-card {
        display: none !important;
        /* Hide hover card on mobile/tablet for better UX */
    }

    .dev-heading {
        font-size: 32px;
    }

    .devlopment-section-services {
        padding: 50px 0;
    }

    .pro-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .pro-cta-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .cf-stats-header {
        margin: 45px auto 26px auto;
    }

    .cf-stats-title {
        font-size: 28px;
    }

    .cf-stats-subtitle {
        font-size: 15px;
    }

    .cf-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .client-family-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cf-header-brand {
        display: none;
    }

    .client-family-title {
        font-size: 32px;
    }
    .dev-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section.is-testimonial {
    padding: 50px 0px;
}
    #industries-we-serve.industry-table-section {
        padding: 50px 0 50px;
    }
        .subserv-blog-section {
        padding: 50px 0 50px;
    }
    .creative-inquiry-section,
    section.is-testimonial {
    padding: 50px 0;
}
.subserv-blog-header {
    margin-bottom: 30px;
}
    .innovate-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-left.coffee-cup-box::before{
        display: none;
    }

}

@media (max-width: 767px) {
    .form-row {
    flex-direction: column;
}

    .hero-height-new {
        opacity: 1 !important;
    }

    .hero-gsap-creative {
        height: auto;
        min-height: 100vh;
        min-height: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 92px 18px 40px;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    .hero-scene {
        position: relative;
        width: 100%;
        max-width: 520px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        z-index: 2;
        margin: 0 auto;
    }

    .hero-content-container {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
    }

    .layer-text-group {
        position: relative;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: none !important;
        margin: 0;
    }

    .hero-main-title {
        font-size: clamp(20px, 5.2vw, 26px);
        font-weight: 800;
        line-height: 1.22;
        letter-spacing: -0.5px;
        color: #0f172a;
        text-align: center;
        margin-bottom: 8px;
    }

    .typing-container {
        font-size: clamp(22px, 6vw, 30px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.5px;
        text-align: center;
        min-height: 48px;
        margin: 4px 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .excellence-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 18px;
        margin-bottom: 0;
        border-radius: 9999px;
        background: rgb(227 86 17 / 14%);
        border: 1px solid rgba(227, 86, 17, 0.25);
    }

    .experience-years-wrap {
        font-size: 20px;
        font-weight: 800;
    }

    .excellence-label {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .layer-video {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none !important;
        width: 100%;
        max-width: 440px;
        height: auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .hero-video-container {
        position: relative;
        width: 100%;
        max-width: 440px;
        height: auto;
        max-height: none;
        aspect-ratio: 16 / 9.6;
        border-radius: 16px;
        box-shadow: 0 18px 45px rgba(0, 50, 150, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
        background: #0f172a;
    }

    .hero-video-background {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

    .hero-video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    .video-badge {
        position: absolute;
        padding: 6px 12px;
        font-size: 10.5px;
        font-weight: 600;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        z-index: 5;
        white-space: nowrap;
    }

    .badge-top-left {
        top: -10px;
        left: 8px;
    }

    .badge-bottom-right {
        bottom: -10px;
        right: 8px;
    }

    .creative-inquiry-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .creative-inquiry-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .creative-content-wrapper {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .creative-text-block {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .creative-heading {
        font-size: 38px;
    }

    .creative-actions {
        flex-direction: column;
    }

    .btn-creative-solid,
    .btn-creative-outline {
        width: 100%;
        justify-content: center;
    }

    .cta-left.coffee-cup-box,
    .coffee-cup-box {
        margin: 20px auto 0;
        left: 0 !important;
        bottom: 0 !important;
    }

    .creative-form-block {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .form-card-glass {
        padding: 30px 20px !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .floating-badge {
        left: 15px !important;
        bottom: -15px !important;
        padding: 8px 16px !important;
        border-radius: 14px !important;
        font-size: 13px !important;
        max-width: calc(100% - 30px) !important;
        box-sizing: border-box;
    }

    .client-family-section {
        padding-top: 60px;
        padding-bottom: 75px;
    }

    .client-family-title {
        font-size: 26px;
    }

    .cf-subtitle {
        font-size: 14px;
    }

    .cf-stats-header {
        margin: 35px auto 22px auto;
    }

    .cf-stats-title {
        font-size: 23px;
        line-height: 1.3;
    }

    .cf-stats-subtitle {
        font-size: 14px;
    }

    .cf-stat-card {
        padding: 20px 20px;
        min-height: auto;
        gap: 16px;
    }

    .cf-stat-icon-wrapper {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .cf-stat-number {
        font-size: 28px;
    }

    .cf-stat-label {
        font-size: 16px;
    }

    .cf-brand-card {
        flex: 0 0 140px;
        width: 140px;
        height: 66px;
        padding: 8px 14px;
        border-radius: 12px;
    }

    .cf-brand-card:not(.cf-brand-card-dark) img,
    .cf-brand-card.cf-brand-card-dark img {
        max-width: 110px;
        max-height: 40px;
    }

    .web3-bento-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .innovate-flex-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dev-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .cf-showcase-title {
        font-size: 10.5px;
        letter-spacing: 1px;
    }

    .dev-badge {
        padding: 8px 15px;
    }
    .bento-brand-img {
    width: 60px;
    height: 60px;
}
    .innovate-showcase-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .raiting-data {
    font-size: 5.77778rem;
    line-height: 30%;
}
#clutch .heading-5.max-w-380 {
    font-size: 1rem;
    line-height: 1.3;
}
    .bento-brand-line {
        grid-column-gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-gsap-creative {
        padding: 82px 14px 28px;
    }

    .hero-scene {
        gap: 16px;
    }

    .hero-main-title {
        font-size: 19px;
        letter-spacing: -0.3px;
    }

    .typing-container {
        font-size: 21px;
        min-height: 44px;
        margin-bottom: 12px;
    }

    .excellence-badge {
        padding: 5px 14px;
    }

    .experience-years-wrap {
        font-size: 16px;
    }

    .excellence-label {
        font-size: 10.5px;
    }

    .hero-video-container {
        border-radius: 12px;
        aspect-ratio: 16 / 9.4;
    }

    .hero-video-background,
    .hero-video-background video {
        border-radius: 12px;
    }

    .video-badge {
        padding: 4px 9px;
        font-size: 9.5px;
    }

    .badge-top-left {
        top: -8px;
        left: 4px;
    }

    .badge-bottom-right {
        bottom: -8px;
        right: 4px;
    }
}

@media (max-width: 640px) {
    .creative-modal-white-card {
        padding: 30px 18px 24px;
        border-radius: 24px;
    }

    .creative-modal-heading {
        font-size: 22px;
    }

    .creative-modal-white-card .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .modal-white-close {
        top: 16px;
        right: 16px;
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 576px) {


    .sticky-card.cs-card {
        padding: 22px 18px;
        margin-bottom: 24px;
    }

    .sticky-card-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .sticky-card-list li {
        font-size: 14px;
    }

    .cs-btn {
        width: 100%;
        justify-content: center;
    }

    .cr-footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .cr-footer-nav-col {
        grid-column: span 1;
    }

    .cr-footer-col-company-insights {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cr-footer-col-locations,
    .cr-footer-col-connect {
        grid-column: span 2;
    }

    .cr-footer-title {
        font-size: 14px;
    }

    .cr-footer-link {
        font-size: 13px;
    }
}

@media (max-width: 321px) {}

/* ==========================================================================
   Creative About Page - Hero Section (Unique & High-Impact Creative Design)
   ========================================================================== */

.cr-about-hero {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(140px, 15vh, 180px) 24px clamp(70px, 9vh, 110px);
    background-color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ambient Atmospheric Backdrop */
.cr-about-hero-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.cr-aurora-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.cr-aurora-1 {
    top: -5%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.14) 0%, rgba(255, 110, 64, 0.04) 50%, transparent 70%);
    animation: crAuroraBreathe 12s ease-in-out infinite alternate;
}

.cr-aurora-2 {
    bottom: -5%;
    right: 5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(119, 77, 255, 0.12) 0%, rgba(0, 130, 243, 0.05) 50%, transparent 70%);
    animation: crAuroraBreathe 15s ease-in-out infinite alternate-reverse;
}

.cr-mesh-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(15, 23, 42, 0.075) 1.2px, transparent 1.2px),
        linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
    background-size: 32px 32px, 96px 96px, 96px 96px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 85%);
}

/* Container & Flex Column Layout */
.cr-about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cr-about-hero-split {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: clamp(36px, 4.5vw, 70px);
    width: 100%;
}

/* Left Column: Content */
.cr-about-hero-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Eyebrow Badge */
.cr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: rgba(254, 74, 35, 0.08);
    border: 1px solid rgba(254, 74, 35, 0.22);
    border-radius: 100px;
    margin: 0 0 20px 0;
    box-shadow: 0 2px 10px rgba(254, 74, 35, 0.06);
    transition: all 0.3s ease;
}

.cr-hero-badge:hover {
    background: rgba(254, 74, 35, 0.12);
    border-color: rgba(254, 74, 35, 0.35);
    transform: translateY(-1px);
}

.cr-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fe4a23;
    box-shadow: 0 0 0 3px rgba(254, 74, 35, 0.25);
    animation: crPulseDot 2.2s ease-in-out infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes crPulseDot {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(254, 74, 35, 0.25);
    }

    50% {
        transform: scale(1.18);
        box-shadow: 0 0 0 6px rgba(254, 74, 35, 0.08);
    }
}

.cr-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fe4a23;
    line-height: 1;
}

/* Monumental Architectural Typography */
.cr-about-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.6rem, 4.4vw, 4.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cr-title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.28em;
}

.cr-title-text {
    color: #0f172a;
    font-weight: 800;
}

.cr-title-gradient {
    display: inline-block;
    position: relative;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}

.cr-gradient-passion {
    background-image: linear-gradient(135deg, #fe4a23 0%, #ff6e40 50%, #ff8a00 100%);
}

.cr-gradient-creativity {
    background-image: linear-gradient(135deg, #774dff 0%, #9066ff 45%, #0082f3 100%);
}

/* Hero Description */
.cr-about-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.02rem, 1.2vw, 1.16rem);
    font-weight: 400;
    line-height: 1.7;
    color: #475569;
    letter-spacing: -0.012em;
    margin: 0 0 32px 0;
    max-width: 560px;
    text-align: left;
}

/* Hero Action CTA Button */
.cr-about-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.cr-hero-btn {
    padding: 13px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(254, 74, 35, 0.28) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}

.cr-hero-btn:hover {
    box-shadow: 0 12px 30px rgba(254, 74, 35, 0.42) !important;
    transform: translateY(-2px);
}

#about-story {
    scroll-margin-top: 85px;
}

/* ==========================================================================
   Right Column: Bespoke Creative Tech Showcase Stage
   ========================================================================== */
.cr-about-hero-col-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.cr-about-stage-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 590px;
}

/* Ambient Atmospheric Core Glow */
.cr-stage-glow-core {
    position: absolute;
    width: 560px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(254, 74, 35, 0.22) 0%, rgba(119, 77, 255, 0.16) 45%, rgba(0, 130, 243, 0.08) 70%, transparent 80%);
    filter: blur(54px);
    border-radius: 50%;
    animation: crPulseCore 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

/* High-Tech Orbital Halo */
.cr-orbital-halo {
    position: absolute;
    width: 630px;
    height: 440px;
    border-radius: 50%;
    border: 1.5px dashed rgba(254, 74, 35, 0.22);
    pointer-events: none;
    z-index: 1;
    animation: crSpinClockwise 45s linear infinite;
    box-sizing: border-box;
}

.cr-halo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fe4a23;
    box-shadow: 0 0 10px #fe4a23, 0 0 20px rgba(254, 74, 35, 0.4);
}

.cr-halo-dot-1 {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.cr-halo-dot-2 {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #774dff;
    box-shadow: 0 0 10px #774dff;
}

/* Main Studio Window Frame */
.cr-hero-studio-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow:
        0 28px 70px -15px rgba(15, 23, 42, 0.18),
        0 12px 30px -8px rgba(254, 74, 35, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
    cursor: default;
}

.cr-hero-studio-frame:hover {
    transform: none;
    border-color: rgba(15, 23, 42, 0.10);
    box-shadow:
        0 28px 70px -15px rgba(15, 23, 42, 0.18),
        0 12px 30px -8px rgba(254, 74, 35, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

/* Studio Header Bar */
.cr-studio-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(248, 250, 252, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cr-studio-controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cr-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.cr-dot-coral {
    background: #ff5f56;
}

.cr-dot-gold {
    background: #ffbd2e;
}

.cr-dot-green {
    background: #27c93f;
}

.cr-studio-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cr-studio-logo-img {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Studio Canvas / Image */
.cr-studio-canvas {
    position: relative;
    width: 100%;
    height: 365px;
    overflow: hidden;
    background: #0f172a;
}

.cr-studio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
    display: block;
    filter: contrast(1.05) brightness(0.98);
}

.cr-hero-studio-frame:hover .cr-studio-img {
    transform: none;
}

.cr-studio-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, transparent 45%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.cr-canvas-location-pill svg {
    color: #fe4a23;
}

/* Floating Glass Badges */
.cr-hero-floating-badge {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 18px 40px -8px rgba(15, 23, 42, 0.16),
        0 6px 16px -4px rgba(254, 74, 35, 0.10);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    cursor: default;
}

.cr-hero-floating-badge:hover {
    box-shadow:
        0 24px 50px -8px rgba(15, 23, 42, 0.22),
        0 10px 22px -3px rgba(254, 74, 35, 0.16);
}

/* Top-Right Milestone Badge */
.cr-badge-milestone {
    top: -18px;
    right: -20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 16px;
    border-color: rgba(254, 74, 35, 0.22);
}

.cr-milestone-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.12), rgba(255, 138, 0, 0.18));
    border: 1px solid rgba(254, 74, 35, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cr-milestone-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cr-milestone-unit {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fe4a23;
}

.cr-milestone-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1px;
}

/* Bottom-Left Talent Stack Card */
.cr-badge-talent {
    bottom: -22px;
    left: -20px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    border-radius: 18px;
    border-color: rgba(15, 23, 42, 0.08);
}

.cr-avatar-cluster {
    display: flex;
    align-items: center;
}

.cr-avatar-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-left: -9px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    display: block;
}

.cr-avatar-pic:first-child {
    margin-left: 0;
}

.cr-avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fe4a23, #ff7a00);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin-left: -9px;
    box-shadow: 0 2px 6px rgba(254, 74, 35, 0.35);
}

.cr-talent-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cr-talent-headline {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.cr-talent-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.cr-stars-gold {
    color: #f59e0b;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.cr-rating-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
}

/* Bottom-Right Floating Tech Tag */
.cr-hero-floating-tag {
    position: absolute;
    bottom: 22px;
    right: -18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(119, 77, 255, 0.28);
    border-radius: 100px;
    box-shadow: 0 10px 24px -4px rgba(119, 77, 255, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.cr-hero-floating-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(119, 77, 255, 0.45);
}

.cr-tag-pulse-icon {
    color: #774dff;
    font-size: 0.9rem;
    line-height: 1;
    animation: crTwinkle 2.5s ease-in-out infinite alternate;
}

.cr-tag-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: #774dff;
    letter-spacing: 0.03em;
}

/* Corner Tech Markers */
.cr-card-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: rgba(254, 74, 35, 0.45);
    border-style: solid;
    pointer-events: none;
    z-index: 3;
}

.cr-marker-tl {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px;
    border-top-left-radius: 4px;
}

.cr-marker-tr {
    top: 8px;
    right: 8px;
    border-width: 2px 2px 0 0;
    border-top-right-radius: 4px;
}

.cr-marker-bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 2px 2px;
    border-bottom-left-radius: 4px;
}

.cr-marker-br {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0;
    border-bottom-right-radius: 4px;
}

/* Keyframes */
@keyframes crAuroraBreathe {
    0% {
        transform: scale(0.92) translate(0, 0);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.1) translate(15px, -15px);
        opacity: 1;
    }
}

@keyframes crPulseCore {
    0% {
        transform: scale(0.88);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.15);
        opacity: 0.95;
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes crSpinCounter {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes crShimmerStream {

    0%,
    60% {
        left: -130%;
    }

    100% {
        left: 200%;
    }
}

@keyframes crTwinkle {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .cr-about-hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .cr-about-hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cr-about-hero-col-left {
        align-items: center;
        text-align: center;
    }

    .cr-about-hero-title {
        text-align: center;
    }

    .cr-title-row {
        justify-content: center;
    }

    .cr-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .cr-about-hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cr-about-hero-actions {
        justify-content: center;
        width: 100%;
    }

    .cr-about-stage-wrapper {
        max-width: 520px;
    }

    .cr-badge-milestone {
        top: -14px;
        right: 0;
    }

    .cr-badge-talent {
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
    }

    .cr-hero-floating-tag {
        display: none;
    }

    .cr-orbital-halo {
        width: 520px;
        height: 360px;
    }
}

@media (max-width: 767px) {
    .cr-about-hero {
        padding: 100px 16px 45px;
        min-height: auto;
    }

    .cr-about-hero-title {
        font-size: 2.2rem;
        gap: 4px;
        margin-bottom: 22px;
    }

    .cr-hero-badge {
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .cr-badge-text {
        font-size: 0.78rem;
    }

    .cr-about-hero-desc {
        font-size: 0.98rem;
        line-height: 1.62;
        margin-bottom: 24px;
    }

    .cr-hero-btn {
        padding: 11px 24px !important;
        font-size: 14px !important;
    }

    .cr-about-stage-wrapper {
        max-width: 100%;
    }

    .cr-studio-canvas {
        height: 250px;
    }

    .cr-hero-studio-frame {
        border-radius: 18px;
    }

    .cr-badge-milestone {
        top: -12px;
        right: 6px;
        padding: 6px 12px;
        border-radius: 12px;
    }

    .cr-milestone-icon-box {
        width: 28px;
        height: 28px;
    }

    .cr-milestone-title {
        font-size: 0.95rem;
    }

    .cr-milestone-sub {
        font-size: 0.65rem;
    }

    .cr-badge-talent {
        bottom: -14px;
        padding: 8px 14px;
        border-radius: 14px;
    }

    .cr-talent-headline {
        font-size: 0.78rem;
    }

    .cr-talent-rating {
        font-size: 0.68rem;
    }

    .cr-orbital-halo {
        display: none;
    }
}

@media (max-width: 480px) {
    .cr-about-hero {
        padding: 90px 14px 40px;
    }

    .cr-about-hero-title {
        font-size: 1.85rem;
    }

    .cr-studio-canvas {
        height: 210px;
    }

    .cr-studio-bar {
        padding: 8px 12px;
    }

    .cr-studio-title {
        font-size: 0.74rem;
    }

    .cr-canvas-location-pill {
        display: none;
    }

    .cr-avatar-pic,
    .cr-avatar-more {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
        margin-left: -7px;
    }

    .cr-badge-talent {
        gap: 10px;
        padding: 6px 12px;
    }

    .cr-about-hero-desc {
        font-size: 0.92rem;
        line-height: 1.55;
    }
}

/* Canvas Reticles */
.cr-canvas-reticle {
    position: absolute;
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(15, 23, 42, 0.2);
    pointer-events: none;
    line-height: 1;
    z-index: 2;
}

.cr-reticle-tl {
    top: 32px;
    left: 32px;
}

.cr-reticle-tr {
    top: 32px;
    right: 32px;
}

.cr-reticle-bl {
    bottom: 32px;
    left: 32px;
}

.cr-reticle-br {
    bottom: 32px;
    right: 32px;
}

/* ==========================================================================
   Creative About Page - Team Showcase Section
   ========================================================================== */

.cr-team-showcase-section {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 24px clamp(50px, 7vh, 90px);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.cr-team-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.cr-team-image-frame {
    position: relative;
    width: 100%;
    border-radius: clamp(20px, 3vw, 36px);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 30px 70px -15px rgba(15, 23, 42, 0.12),
        0 12px 30px -6px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
}

.cr-team-image-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 40px 85px -18px rgba(15, 23, 42, 0.18),
        0 16px 36px -6px rgba(254, 74, 35, 0.08);
    border-color: rgba(254, 74, 35, 0.25);
}

.cr-team-photo-img {
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cr-team-image-frame:hover .cr-team-photo-img {
    transform: scale(1.02);
}

/* Also ensure legacy .section.ava._1 never reverts to position: fixed */
.section.ava._1 {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    z-index: 10 !important;
}

@media (max-width: 767px) {
    .cr-team-showcase-section {
        padding: 0 16px 40px;
    }

    .cr-team-image-frame {
        border-radius: 20px;
    }

    .cr-canvas-reticle {
        display: none;
    }
}

/* ==========================================================================
   Creative About Page - Our Story Header & Badge
   ========================================================================== */

.success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cr-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(254, 74, 35, 0.25);
    box-shadow: 0 4px 14px rgba(254, 74, 35, 0.08);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.cr-story-badge:hover {
    border-color: #fe4a23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.16);
}

.cr-story-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fe4a23;
    box-shadow: 0 0 8px rgba(254, 74, 35, 0.6);
    animation: crStoryBadgePulse 2s infinite;
}

.cr-story-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #fe4a23;
    text-transform: uppercase;
}

@keyframes crStoryBadgePulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

.cr-story-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    line-height: 1.65;
    color: #475569;
    max-width: 50rem;
    margin: 18px auto 0;
    text-align: center;
}

/* ==========================================================================
   Creative About Page - Our Team Footprint Section & Layout
   ========================================================================== */

/* Reset legacy Webflow positioning that broke the section */
.our-team-footprint.is-about-2,
.section.our-team-footprint.is-about-2,
.cr-footprint-section {
    position: relative;
    background: #ffffff;
    padding: 80px 0px;
    margin: 0;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.cr-footprint-container .section.stat {
    margin-top: 0px;
}


/* Atmospheric ambient light orbs */
.cr-footprint-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.cr-footprint-glow-orange {
    top: -60px;
    left: 4%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.08) 0%, rgba(254, 74, 35, 0) 70%);
}

.cr-footprint-glow-blue {
    bottom: -80px;
    right: 4%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 130, 243, 0.07) 0%, rgba(0, 130, 243, 0) 70%);
}

.cr-footprint-container,
.our-team-footprint .container {
    position: relative;
    z-index: 2;
    max-width: 1240px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.cr-footprint-wrap,
.our-team-footprint .about-2-txt-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    height: auto !important;
    min-height: auto !important;
    grid-column-gap: 0 !important;
    grid-row-gap: 0 !important;
}

/* Eyebrow Badge Pill */
.cr-footprint-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(254, 74, 35, 0.22);
    box-shadow: 0 4px 14px rgba(254, 74, 35, 0.07);
    margin-bottom: 22px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.cr-footprint-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 74, 35, 0.45);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.12);
}

.cr-footprint-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fe4a23;
    box-shadow: 0 0 10px rgba(254, 74, 35, 0.65);
    animation: crPulseDot 2s infinite ease-in-out;
}

.cr-footprint-badge-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #fe4a23;
    text-transform: uppercase;
}

@keyframes crPulseDot {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Main Section Heading */
.our-team-footprint .about-2-text-1,
.cr-footprint-title {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 960px !important;
    margin: 0 auto 36px auto !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.028em !important;
    color: #0f172a !important;
    text-align: center !important;
}

.cr-footprint-highlight {
    background: linear-gradient(135deg, #fe4a23 0%, #ff6b3d 45%, #fe4a23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

/* Stacked Paragraphs (No Cards, Not Columns - 2 Stacked Paragraph Lines) */
.our-team-footprint .cr-footprint-text-wrap {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
}

.our-team-footprint .cr-footprint-text-flow {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    text-align: center;
}

/* Paragraph Descriptions */
.our-team-footprint .cr-footprint-desc {
    font-family: 'Inter';
    font-size: 16px;
    line-height: 1.82;
    color: #000000;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.cr-footprint-desc strong {
    color: #0f172a;
    font-weight: 600;
}

.cr-years-pill {
    font-weight: 700;
    color: #fe4a23;
}

/* Responsive Styles */
@media (max-width: 767px) {

    .our-team-footprint.is-about-2,
    .section.our-team-footprint.is-about-2,
    .cr-footprint-section {
        padding: 50px 0 !important;
    }

    .our-team-footprint .about-2-text-1,
    .cr-footprint-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 22px !important;
    }

    .our-team-footprint .about-2-text-desc,
    .cr-footprint-desc {
        font-size: 1rem !important;
        line-height: 1.72 !important;
        text-align: left !important;
    }

    .our-team-footprint .about-2-text-2-set,
    .cr-footprint-text-flow {
        gap: 18px !important;
    }
}

/* ==========================================================================
   Creative About Page - Success Stats Section Enhancement (2010, 1200+, 200+)
   ========================================================================== */

.cus-suc-sec {
    position: relative;
    overflow: hidden;
}

.cus-suc-sec .stat-list-item {
    transition: transform 0.4s ease;
}

.cus-suc-sec .stat-number-block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: color 1.2s;
}

.cus-suc-sec .stat-num {
    display: inline-block;
    padding-top: 0 !important;
    font-size: 7.2rem !important;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(2.5rem);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease;
    will-change: transform, opacity;
}

/* Stagger delay for digits entrance */
.cus-suc-sec .stat-item-anim.is-inview .stat-num:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.cus-suc-sec .stat-item-anim.is-inview .stat-num:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
}

.cus-suc-sec .stat-item-anim.is-inview .stat-num:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.23s;
}

.cus-suc-sec .stat-item-anim.is-inview .stat-num:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.32s;
}

.cus-suc-sec .stat-item-anim.is-inview .stat-num:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.41s;
}

/* Balanced styling for 5-char stat (1200+) */
.cus-suc-sec .stat-num-5char {
    margin-right: 1.2rem;
}

.cus-suc-sec .stat-num-5char .stat-num {
    font-size: 6.2rem !important;
    letter-spacing: 2px;
}

/* Refined plus sign in both 1200+ and 200+ */
.cus-suc-sec .stat-plus-sign {
    font-size: 6.2rem !important;
    font-weight: 500;
    margin-left: 2px;
    line-height: 1;
}

.cus-suc-sec .stat-num-5char .stat-plus-sign {
    font-size: 5.5rem !important;
    margin-left: 1px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cus-suc-sec .stat-num {
        font-size: 5.8rem !important;
        letter-spacing: 2px;
    }

    .cus-suc-sec .stat-num-5char .stat-num {
        font-size: 5.2rem !important;
        letter-spacing: 1px;
    }

    .cus-suc-sec .stat-plus-sign {
        font-size: 5.2rem !important;
    }

    .cus-suc-sec .stat-num-5char .stat-plus-sign {
        font-size: 4.6rem !important;
    }

    .cus-suc-sec .stat-num-5char {
        margin-right: 0.6rem;
    }
}

@media (max-width: 767px) {
    .cus-suc-sec .stat-num {
        font-size: 4.4rem !important;
        letter-spacing: 2px;
    }

    .cus-suc-sec .stat-num-5char .stat-num {
        font-size: 3.6rem !important;
        letter-spacing: 0.5px;
    }

    .cus-suc-sec .stat-plus-sign {
        font-size: 3.8rem !important;
    }

    .cus-suc-sec .stat-num-5char .stat-plus-sign {
        font-size: 3.2rem !important;
    }

    .cus-suc-sec .stat-num-5char {
        margin-right: 0;
    }
}

/* ==========================================================================
   Creative About Page - Innovative Solutions Section (Our Team Builds)
   Scoped to parent class .cr-innovative-solutions-sec without using !important
   ========================================================================== */

/* Section Reset & Container */
section.section.is-mission.our-value-box.cr-innovative-solutions-sec,
section.cr-innovative-solutions-sec {
    position: relative;
    background: #ffffff;
    padding: 85px 0 95px 0;
    margin: 0;
    height: auto;
    min-height: auto;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Ambient Atmospheric Glow Orbs */
.cr-innovative-solutions-sec .cr-solutions-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.cr-innovative-solutions-sec .cr-solutions-glow-orange {
    top: -50px;
    right: 6%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.08) 0%, rgba(254, 74, 35, 0) 70%);
}

.cr-innovative-solutions-sec .cr-solutions-glow-blue {
    bottom: -60px;
    left: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 130, 243, 0.07) 0%, rgba(0, 130, 243, 0) 70%);
}

/* Container */
.cr-innovative-solutions-sec .container,
.cr-innovative-solutions-sec .cr-solutions-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.cr-innovative-solutions-sec .cr-solutions-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

/* Eyebrow Badge Pill */
section.our-value-box.cr-innovative-solutions-sec .section-tag,
.cr-innovative-solutions-sec .cr-solutions-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 20px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(254, 74, 35, 0.22);
    box-shadow: 0 4px 14px rgba(254, 74, 35, 0.07);
    margin: 0 auto 22px auto;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
}

.cr-innovative-solutions-sec .cr-solutions-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 74, 35, 0.45);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.12);
}

.cr-innovative-solutions-sec .cr-solutions-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fe4a23;
    box-shadow: 0 0 10px rgba(254, 74, 35, 0.65);
    animation: crPulseDot 2s infinite ease-in-out;
}

.cr-innovative-solutions-sec .cr-solutions-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.9px;
    color: #fe4a23;
    text-transform: uppercase;
    line-height: 1;
}

/* Main Section Heading */
section.our-value-box.cr-innovative-solutions-sec .mission-text,
.cr-innovative-solutions-sec .cr-solutions-title {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 34px auto;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0f172a;
    text-align: center;
}

.cr-innovative-solutions-sec .cr-solutions-highlight {
    background: linear-gradient(135deg, #fe4a23 0%, #ff6b3d 45%, #fe4a23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

/* Text Wrapper & Flow */
section.our-value-box.cr-innovative-solutions-sec .about-2-text-2,
.cr-innovative-solutions-sec .cr-solutions-text-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
}

section.our-value-box.cr-innovative-solutions-sec .about-2-text-2-set,
.cr-innovative-solutions-sec .cr-solutions-text-flow {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    text-align: center;
}

/* Paragraph Descriptions */
section.our-value-box.cr-innovative-solutions-sec .about-2-text-2 .about-2-text-desc,
.cr-innovative-solutions-sec .cr-solutions-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.82;
    color: #334155;
    margin: 0;
    text-align: center;
    font-weight: 400;
    max-width: 100%;
}

.cr-innovative-solutions-sec .cr-solutions-desc strong {
    color: #0f172a;
    font-weight: 600;
}

/* Modern Callout Card for Vision / CTA */
.cr-innovative-solutions-sec .cr-solutions-cta-box {
    margin-top: 14px;
    padding: 24px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.04) 0%, #ffffff 50%, rgba(0, 130, 243, 0.04) 100%);
    border: 1px solid rgba(254, 74, 35, 0.16);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cr-innovative-solutions-sec .cr-solutions-cta-box:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 74, 35, 0.32);
    box-shadow: 0 18px 40px rgba(254, 74, 35, 0.08);
}

.cr-innovative-solutions-sec .cr-solutions-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cr-innovative-solutions-sec .cr-solutions-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(254, 74, 35, 0.1);
    color: #fe4a23;
    font-size: 20px;
}

.cr-innovative-solutions-sec .cr-solutions-cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
    text-align: left;
    margin: 0;
}

.cr-innovative-solutions-sec .cr-solutions-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, #fe4a23 0%, #ff5e36 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(254, 74, 35, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cr-innovative-solutions-sec .cr-solutions-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 74, 35, 0.42);
    background: linear-gradient(135deg, #e63e18 0%, #fe4a23 100%);
    color: #ffffff;
}

.cr-innovative-solutions-sec .cr-solutions-cta-btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.cr-innovative-solutions-sec .cr-solutions-cta-btn:hover i {
    transform: translateX(4px);
}

/* Hide legacy Webflow shadow overlay */
section.our-value-box.cr-innovative-solutions-sec .shadow.vertical.small-2 {
    display: none;
}

/* Responsive Styles */
@media (max-width: 991px) {

    section.section.is-mission.our-value-box.cr-innovative-solutions-sec,
    section.cr-innovative-solutions-sec {
        padding: 70px 0 80px 0;
    }

    section.our-value-box.cr-innovative-solutions-sec .mission-text,
    .cr-innovative-solutions-sec .cr-solutions-title {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
        margin-bottom: 28px;
    }

    .cr-innovative-solutions-sec .cr-solutions-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        gap: 18px;
    }

    .cr-innovative-solutions-sec .cr-solutions-cta-btn {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {

    section.section.is-mission.our-value-box.cr-innovative-solutions-sec,
    section.cr-innovative-solutions-sec {
        padding: 55px 0 65px 0;
    }

    section.our-value-box.cr-innovative-solutions-sec .mission-text,
    .cr-innovative-solutions-sec .cr-solutions-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 22px;
    }

    section.our-value-box.cr-innovative-solutions-sec .about-2-text-2 .about-2-text-desc,
    .cr-innovative-solutions-sec .cr-solutions-desc {
        font-size: 15px;
        line-height: 1.72;
        text-align: left;
    }

    section.our-value-box.cr-innovative-solutions-sec .about-2-text-2-set,
    .cr-innovative-solutions-sec .cr-solutions-text-flow {
        gap: 18px;
        text-align: left;
    }

    .cr-innovative-solutions-sec .cr-solutions-cta-box {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .cr-innovative-solutions-sec .cr-solutions-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cr-innovative-solutions-sec .cr-solutions-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Creative Light Mission & Vision Section
   ========================================================================== */

.cr-mission-vision-section {
    position: relative;
    padding: 110px 0 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
    height: auto !important;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

/* Atmospheric Ambient Glows */
.cr-mission-vision-section .cr-mv-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cr-mission-vision-section .cr-mv-glow-orange {
    top: -120px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.08) 0%, transparent 70%);
    filter: blur(70px);
}

.cr-mission-vision-section .cr-mv-glow-blue {
    bottom: -100px;
    right: -100px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 130, 243, 0.07) 0%, rgba(119, 77, 255, 0.05) 50%, transparent 70%);
    filter: blur(80px);
}

/* Micro Dot Pattern */
.cr-mission-vision-section .cr-mv-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.18) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.cr-mission-vision-section .cr-mv-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.cr-mission-vision-section .cr-mv-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px auto;
}

.cr-mission-vision-section .cr-mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 20px;
    border-radius: 100px;
    background: #ffffff;
    border: 1px solid rgba(254, 74, 35, 0.22);
    box-shadow: 0 4px 14px rgba(254, 74, 35, 0.07);
    margin-bottom: 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cr-mission-vision-section .cr-mv-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 74, 35, 0.45);
}

.cr-mission-vision-section .cr-mv-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fe4a23;
    box-shadow: 0 0 10px rgba(254, 74, 35, 0.65);
    animation: crPulseDot 2s infinite ease-in-out;
}

.cr-mission-vision-section .cr-mv-badge-text {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.9px;
    color: #fe4a23;
    text-transform: uppercase;
    line-height: 1;
}

.cr-mission-vision-section .cr-mv-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 18px 0;
}

.cr-mission-vision-section .cr-mv-highlight {
    background: linear-gradient(135deg, #fe4a23 0%, #ff6b3d 50%, #0082f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cr-mission-vision-section .cr-mv-subtitle {
    font-size: 16.5px;
    line-height: 1.75;
    color: #475569;
    margin: 0 auto;
    max-width: 680px;
    font-weight: 400;
}

/* Dual Cards Grid */
.cr-mission-vision-section .cr-mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Card Base */
.cr-mission-vision-section .cr-mv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 44px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease;
}

/* Card Top Row */
.cr-mission-vision-section .cr-mv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cr-mission-vision-section .cr-mv-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    background: rgba(254, 74, 35, 0.08);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.2);
}

.cr-mission-vision-section .cr-mv-card-pill.cr-mv-pill-vision {
    background: rgba(0, 130, 243, 0.08);
    color: #0082f3;
    border: 1px solid rgba(0, 130, 243, 0.2);
}

.cr-mission-vision-section .cr-mv-pill-num {
    opacity: 0.8;
    font-feature-settings: "tnum";
}

.cr-mission-vision-section .cr-mv-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.cr-mission-vision-section .cr-mv-card:hover .cr-mv-card-icon {
    transform: scale(1.08) rotate(3deg);
}

.cr-mission-vision-section .cr-mv-icon-mission {
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.12) 0%, rgba(255, 122, 69, 0.06) 100%);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.25);
}

.cr-mission-vision-section .cr-mv-icon-vision {
    background: linear-gradient(135deg, rgba(0, 130, 243, 0.12) 0%, rgba(119, 77, 255, 0.08) 100%);
    color: #0082f3;
    border: 1px solid rgba(0, 130, 243, 0.25);
}

/* Card Heading & Text */
.cr-mission-vision-section .cr-mv-card-heading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.cr-mission-vision-section .cr-mv-gradient-orange {
    background: linear-gradient(135deg, #fe4a23 0%, #ff7a45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cr-mission-vision-section .cr-mv-gradient-blue {
    background: linear-gradient(135deg, #0082f3 0%, #774dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cr-mission-vision-section .cr-mv-card-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 32px 0;
    font-weight: 400;
}

.cr-mission-vision-section .cr-mv-card-text strong {
    color: #0f172a;
    font-weight: 600;
}

/* Card Specific Hover Elevation */
.cr-mission-vision-section .cr-mv-mission-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 74, 35, 0.35);
    box-shadow: 0 24px 50px rgba(254, 74, 35, 0.09), 0 4px 12px rgba(15, 23, 42, 0.03);
}

.cr-mission-vision-section .cr-mv-vision-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 130, 243, 0.35);
    box-shadow: 0 24px 50px rgba(0, 130, 243, 0.09), 0 4px 12px rgba(15, 23, 42, 0.03);
}

/* Mission Feature Items */
.cr-mission-vision-section .cr-mv-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.cr-mission-vision-section .cr-mv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cr-mission-vision-section .cr-mv-feature-item:hover {
    background: #ffffff;
    border-color: rgba(254, 74, 35, 0.25);
    transform: translateX(3px);
}

.cr-mission-vision-section .cr-mv-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: rgba(254, 74, 35, 0.1);
    color: #fe4a23;
    font-size: 14px;
    margin-top: 2px;
}

.cr-mission-vision-section .cr-mv-feature-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cr-mission-vision-section .cr-mv-feature-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.cr-mission-vision-section .cr-mv-feature-info span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Vision Metrics Grid */
.cr-mission-vision-section .cr-mv-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: auto;
}

.cr-mission-vision-section .cr-mv-metric-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cr-mission-vision-section .cr-mv-metric-box:hover {
    background: #ffffff;
    border-color: rgba(0, 130, 243, 0.25);
    transform: translateY(-2px);
}

.cr-mission-vision-section .cr-mv-metric-val {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0082f3;
    line-height: 1.2;
    margin-bottom: 4px;
}

.cr-mission-vision-section .cr-mv-metric-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
}

/* Watermarks */
.cr-mission-vision-section .cr-mv-card-watermark {
    position: absolute;
    bottom: -8px;
    right: 14px;
    font-size: 78px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: rgba(15, 23, 42, 0.025);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}

/* Bottom Philosophy Banner */
.cr-mission-vision-section .cr-mv-bottom-banner {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
    padding: 24px 32px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-mission-vision-section .cr-mv-bottom-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.cr-mission-vision-section .cr-mv-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.1) 0%, rgba(0, 130, 243, 0.1) 100%);
    color: #fe4a23;
    font-size: 20px;
}

.cr-mission-vision-section .cr-mv-banner-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cr-mission-vision-section .cr-mv-banner-tag {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #0082f3;
    text-transform: uppercase;
}

.cr-mission-vision-section .cr-mv-banner-text {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cr-mission-vision-section {
        padding: 80px 0;
    }

    .cr-mission-vision-section .cr-mv-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cr-mission-vision-section .cr-mv-card {
        padding: 36px 30px;
    }

    .cr-mission-vision-section .cr-mv-bottom-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 24px;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .cr-mission-vision-section {
        padding: 60px 0;
    }

    .cr-mission-vision-section .cr-mv-header {
        margin-bottom: 40px;
    }

    .cr-mission-vision-section .cr-mv-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .cr-mission-vision-section .cr-mv-subtitle {
        font-size: 15px;
    }

    .cr-mission-vision-section .cr-mv-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .cr-mission-vision-section .cr-mv-card-heading {
        font-size: 21px;
    }

    .cr-mission-vision-section .cr-mv-card-text {
        font-size: 14.5px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .cr-mission-vision-section .cr-mv-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cr-mission-vision-section .cr-mv-metric-box {
        padding: 12px 14px;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cr-mission-vision-section .cr-mv-metric-val {
        margin-bottom: 0;
    }

    .cr-mission-vision-section .cr-mv-card-watermark {
        display: none;
    }

    .cr-mission-vision-section .cr-mv-bottom-banner {
        padding: 18px 18px;
    }

    .cr-mission-vision-section .cr-mv-banner-text {
        font-size: 14px;
    }
}

.minds-ofc-photo {
    background: #fff;
    padding: 80px;
}

/* ==========================================================================
   OUR TEAM DETAILS SECTION
   ========================================================================== */

.our-team-details {
    position: relative;
    padding: 80px 0px;
    background-color: #fafbfd;
    overflow: hidden;
}

/* Background Ambient Lighting & Subtle Grid Glow */
.team-details-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.team-details-bg-glow.glow-1 {
    top: 5%;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
}

.team-details-bg-glow.glow-2 {
    bottom: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 74, 35, 0.07) 0%, transparent 70%);
}

.our-team-details .container {
    position: relative;
    z-index: 1;
}

/* Header Block */
.team-header-block {
    max-width: 820px;
    margin: 0 auto 65px;
    text-align: center;
}

/* Badge */
.team-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 132, 199, 0.15);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.team-section-badge:hover {
    border-color: rgba(254, 74, 35, 0.35);
    box-shadow: 0 6px 20px rgba(254, 74, 35, 0.12);
    transform: translateY(-2px);
}

.team-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0284c7;
    position: relative;
    box-shadow: 0 0 10px #0284c7;
}

.team-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.4);
    animation: teamBadgePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes teamBadgePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.team-badge-text {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

/* Main Heading */
.team-main-heading {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 0 18px;
    font-family: 'Inter', sans-serif;
}

.team-title-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #00d2ff 50%, #fe4a23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Description */
.team-main-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto;
    max-width: 680px;
    font-family: 'Inter', sans-serif;
}

/* Grid Layout */
.our-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Motion target base initial states for scroll reveal */
.team-motion-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.team-motion-fade-down {
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.team-motion-fade-up.is-inview,
.team-motion-fade-down.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* Individual Team Card */
.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(45px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
    will-change: opacity, transform;
}

.team-card.is-inview {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger entrance delays when grid comes into view */
.team-card:nth-child(1) {
    transition-delay: 0.04s;
}

.team-card:nth-child(2) {
    transition-delay: 0.12s;
}

.team-card:nth-child(3) {
    transition-delay: 0.20s;
}

.team-card:nth-child(4) {
    transition-delay: 0.28s;
}

.team-card:nth-child(5) {
    transition-delay: 0.10s;
}

.team-card:nth-child(6) {
    transition-delay: 0.18s;
}

.team-card:nth-child(7) {
    transition-delay: 0.26s;
}

.team-card:nth-child(8) {
    transition-delay: 0.34s;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0284c7, #fe4a23, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.09), 0 8px 16px -6px rgba(2, 132, 199, 0.12);
}

.team-card.is-inview:hover {
    transform: translateY(-8px) scale(1);
}

.team-card:hover::before {
    opacity: 1;
}

/* Card Image Area */
.team-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.08;
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f6;
    margin-bottom: 18px;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-img {
    transform: scale(1.06);
}

/* Subtle image gradient vignette at bottom */
.team-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(15, 23, 42, 0.18) 100%);
    pointer-events: none;
}

/* Department / Specialization Pill Tag on Image */
.team-card-dept-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Card Content Area */
.team-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Person Name */
.team-member-name {
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.team-card:hover .team-member-name {
    color: #0284c7;
}

/* Person Designation */
.team-member-role {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   LINKEDIN LINE CREATE DESIGN
   ========================================================================== */
.team-linkedin-wrapper {
    margin-top: auto;
    padding-top: 16px;
}

/* The Animated Divider / Connector Line */
.team-linkedin-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: #edf2f7;
    border-radius: 4px;
    margin-bottom: 14px;
    overflow: hidden;
}

.team-linkedin-line-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0284c7 0%, #0a66c2 45%, #fe4a23 100%);
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.team-linkedin-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), #00d2ff, transparent);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-linkedin-line-track {
    opacity: 1;
}

.team-card:hover .team-linkedin-line::after {
    transform: translateX(350%);
}

/* The LinkedIn Action Row */
.team-linkedin-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-linkedin-left {
    display: flex;
    align-items: center;
    gap: 9px;
}

.team-linkedin-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(10, 102, 194, 0.25);
    transition: all 0.3s ease;
}

.team-linkedin-icon-box svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.team-linkedin-text {
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.team-linkedin-arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(10, 102, 194, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a66c2;
    transition: all 0.3s ease;
}

.team-linkedin-arrow-circle svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.2;
    transition: transform 0.3s ease;
}

/* Hover States for LinkedIn Row */
.team-linkedin-link:hover {
    background: #ffffff;
    border-color: rgba(10, 102, 194, 0.3);
    box-shadow: 0 6px 16px rgba(10, 102, 194, 0.14);
    transform: translateY(-2px);
}

.team-linkedin-link:hover .team-linkedin-icon-box {
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(10, 102, 194, 0.35);
}

.team-linkedin-link:hover .team-linkedin-text {
    color: #0a66c2;
}

.team-linkedin-link:hover .team-linkedin-arrow-circle {
    background: #0a66c2;
    color: #ffffff;
}

.team-linkedin-link:hover .team-linkedin-arrow-circle svg {
    transform: translate(2px, -2px);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .our-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 991px) {

    .team-main-heading {
        font-size: 2.35rem;
    }

    .our-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 575px) {
    .our-team-details {
        padding: 60px 0 70px;
    }

    .team-header-block {
        margin-bottom: 40px;
    }

    .team-main-heading {
        font-size: 1.85rem;
    }

    .team-main-description {
        font-size: 0.95rem;
    }

    .our-team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 380px;
        margin: 0 auto;
    }

    .team-card {
        padding: 14px 14px 18px;
    }
}

/* ==========================================================================
   About Page Motion on Scroll Enhancements
   ========================================================================== */
.cr-about-hero [data-framer],
.cr-footprint-section [data-framer],
.cr-innovative-solutions-sec [data-framer],
.cr-mission-vision-section [data-framer],
.minds-ofc-photo.is-office [data-framer] {
    will-change: transform, opacity;
}

.cr-hero-floating-tag:hover {
    transform: translateY(-2px) !important;
}

.office-img-wrap>div {
    will-change: transform, opacity;
}

/* ==========================================================================
   Case Study Showcase Section - Creative CSS (Light Theme)
   ========================================================================== */
.cr-case-study-sec {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #f4f6fb 100%);
    padding: 85px 0 105px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Subtle Tech Grid Overlay */
.cr-case-study-sec .cr-cs-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: 0.7;
}

/* Ambient Back Glow Orbs (Soft Pastels) */
.cr-case-study-sec .cr-cs-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.12;
}

.cr-case-study-sec .cr-cs-glow.glow-blue {
    top: 5%;
    left: 10%;
    width: 480px;
    height: 480px;
    background: #0284c7;
}

.cr-case-study-sec .cr-cs-glow.glow-purple {
    top: 40%;
    right: 5%;
    width: 520px;
    height: 520px;
    background: #8b5cf6;
}

.cr-case-study-sec .cr-cs-glow.glow-cyan {
    bottom: 5%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: #00d2ff;
}

/* Container */
.cr-case-study-sec .cr-cs-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Block */
.cr-case-study-sec .cr-cs-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px;
}

/* Header Pill Badge */
.cr-cs-badge,
.cr-case-study-sec .cr-cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.22);
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cr-cs-badge-dot,
.cr-case-study-sec .cr-cs-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0284c7;
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.cr-cs-badge-text,
.cr-case-study-sec .cr-cs-badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #0284c7;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Main Heading */
.cr-case-study-sec .cr-cs-heading {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
}

.cr-case-study-sec .cr-cs-heading-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.cr-case-study-sec .cr-cs-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #475569;
    margin: 0 auto;
    max-width: 650px;
}

/* Grid Layout */
.cr-case-study-sec .cr-cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Case Study Card (Crisp Modern Light Card) */
.cr-case-study-sec .cr-cs-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #0f172a;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    cursor: pointer;
}

/* Gradient accent bar on top on hover */
.cr-case-study-sec .cr-cs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0284c7, #2563eb, #7c3aed);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cr-case-study-sec .cr-cs-card:hover {
    transform: translateY(-7px);
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.32);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.09), 0 8px 16px -6px rgba(2, 132, 199, 0.12);
}

.cr-case-study-sec .cr-cs-card:hover::before {
    opacity: 1;
}

/* Card Top Bar */
.cr-case-study-sec .cr-cs-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Numeric Tag */
.cr-case-study-sec .cr-cs-card-num {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.cr-case-study-sec .cr-cs-card:hover .cr-cs-card-num {
    color: #0284c7;
}

/* Category Badge Base */
.cr-case-study-sec .cr-cs-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Badge Color Variations (Light-mode friendly with contrast) */
.cr-case-study-sec .cr-cs-tag-wallet {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.cr-case-study-sec .cr-cs-tag-healthcare {
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
    border: 1px solid rgba(2, 132, 199, 0.25);
}

.cr-case-study-sec .cr-cs-tag-dpos {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.cr-case-study-sec .cr-cs-tag-docs {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.cr-case-study-sec .cr-cs-tag-ico {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
    border: 1px solid rgba(236, 72, 153, 0.25);
}

.cr-case-study-sec .cr-cs-tag-nft {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cr-case-study-sec .cr-cs-tag-prediction {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

/* Card Title */
.cr-case-study-sec .cr-cs-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.cr-case-study-sec .cr-cs-card:hover .cr-cs-card-title {
    color: #0284c7;
}

/* Card Description */
.cr-case-study-sec .cr-cs-card-desc {
    font-size: 0.93rem;
    line-height: 1.62;
    color: #64748b;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* Card Footer */
.cr-case-study-sec .cr-cs-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    transition: border-color 0.3s ease;
}

.cr-case-study-sec .cr-cs-card:hover .cr-cs-card-foot {
    border-top-color: rgba(2, 132, 199, 0.2);
}

/* Link Text */
.cr-case-study-sec .cr-cs-link-text {
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
    transition: color 0.3s ease;
}

/* Link Arrow Circle */
.cr-case-study-sec .cr-cs-link-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cr-case-study-sec .cr-cs-link-arrow svg {
    width: 14px;
    height: 14px;
}

.cr-case-study-sec .cr-cs-card:hover .cr-cs-link-arrow {
    transform: translateX(4px);
    background: #0284c7;
    color: #ffffff;
}

/* More Case Studies Section */
.cr-case-study-sec .cr-cs-more-wrap {
    margin-top: 75px;
    padding-top: 55px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.cr-case-study-sec .cr-cs-more-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 32px;
    letter-spacing: -0.015em;
}

/* Downloadable Cards */
.cr-case-study-sec .cr-cs-download-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.cr-case-study-sec .cr-cs-download-card:hover {
    background: #ffffff;
    border-color: rgba(2, 132, 199, 0.32);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.09), 0 8px 16px -6px rgba(2, 132, 199, 0.12);
}

.cr-case-study-sec .cr-cs-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 78%;
}

.cr-case-study-sec .cr-cs-tag-chip {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 3px 9px;
    font-size: 11px;
}

.cr-case-study-sec .cr-cs-pdf-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.cr-case-study-sec .cr-cs-pdf-pill svg {
    width: 12px;
    height: 12px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .cr-case-study-sec {
        padding: 70px 0 90px;
    }

    .cr-case-study-sec .cr-cs-heading {
        font-size: 2.35rem;
    }

    .cr-case-study-sec .cr-cs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .cr-case-study-sec {
        padding: 55px 0 75px;
    }

    .cr-case-study-sec .cr-cs-header {
        margin-bottom: 38px;
    }

    .cr-case-study-sec .cr-cs-heading {
        font-size: 1.95rem;
    }

    .cr-case-study-sec .cr-cs-desc {
        font-size: 0.98rem;
    }

    .cr-case-study-sec .cr-cs-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cr-case-study-sec .cr-cs-card {
        padding: 24px 20px;
    }

    .cr-case-study-sec .cr-cs-more-wrap {
        margin-top: 50px;
        padding-top: 40px;
    }

    .cr-case-study-sec .cr-cs-more-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .web3-main-heading {
        font-size: 32px;
    }

    .web3-services-section,
    .innovate-thrive-section {
        padding: 50px 0;
    }

    .web3-delivering-badge .badge-text,
    .innovate-badge-wrapper .badge-text,
    .dev-badge .badge-text {
        font-size: 12px;
        line-height: 15px;
    }

    .innovate-heading,
    .dev-heading {
        font-size: 25px;
    }

    .pro-cta-container {
        padding: 40px 10px 0px 10px;
    }

    .pro-cta-banner {
        padding: 30px 20px;
    }

    .pro-cta-title {
        font-size: 24px;
    }

    .pro-cta-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    .dev-services-header {
    text-align: center;
    margin-bottom: 40px;
}
}

.sticky-black-scroll-about.section.black {
    background-color: #000;
}

/* ==========================================================================
   Responsive Enhancements: Clients Speak Out (Clutch) & Industries We Serve
   Coverage: iPad / Tablet (768px - 1024px), Mobile (<= 767px), Small Mobile (<= 480px)
   ========================================================================== */

/* --- iPad & Tablet (768px to 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Clutch Title Header on Tablet */
    #clutch .header-block {
        margin-bottom: 35px;
    }

    #clutch .first-line-testimoniall {
        height: auto;
        overflow: visible;
    }

    #clutch .heading-2.text-align-center {
        font-size: clamp(30px, 4vw, 42px);
        line-height: 1.2;
    }

    #clutch .heading-wrap-testimoniall {
        width: auto;
        max-width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    #clutch .heading-2.text-align-center.size {
        width: auto;
        max-width: 100%;
        white-space: nowrap;
        overflow: visible;
        font-size: clamp(30px, 4vw, 42px);
        margin-top: 0;
    }

    #clutch .heading-2.text-align-center.margin-2 {
        font-size: clamp(30px, 4vw, 42px);
        margin-top: 0;
    }

    #clutch .icon-clutch-full {
        width: 3.5rem;
        height: 4.2rem;
    }

    /* Industries We Serve on iPad */
    #industries-we-serve.industry-table-section {
        padding: 70px 0 85px;
    }

    #industries-we-serve .industry-heading {
        font-size: clamp(32px, 4.5vw, 38px);
        margin-bottom: 12px;
    }

    #industries-we-serve .industry-header {
        margin-bottom: 40px;
    }

    #industries-we-serve .industry-table-row,
    #industries-we-serve .industry-table-row.header-row {
        grid-template-columns: 42px 185px 1fr;
        gap: 16px;
        padding: 20px 14px;
        align-items: center;
    }

    #industries-we-serve .industry-table-row.header-row {
        display: grid;
        padding-bottom: 16px;
        font-size: 12.5px;
    }

    #industries-we-serve .industry-row-title {
        font-size: 20px;
        line-height: 1.3;
    }

    #industries-we-serve .col-number {
        font-size: 16px;
    }

    #industries-we-serve .col-services {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 10px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }

    #industries-we-serve .industry-pill {
        font-size: 12.5px;
        padding: 6px 13px;
        white-space: nowrap;
    }

    #industries-we-serve .industry-table-row.item-row:hover {
        padding-left: 20px;
    }

    #industries-we-serve .cursor-hover-card {
        display: none;
    }
}

/* --- Mobile View (max-width: 767px) --- */
@media (max-width: 767px) {

    /* 1. Clients speak out Title Section */
    #clutch .header-block {
        margin-bottom: 26px;
        padding: 0 10px;
    }

    #clutch .heading-7.text-align-center {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    #clutch .haeding-block-testimonial {
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #clutch .first-line-testimoniall {
        height: auto;
        overflow: visible;
        width: 100%;
        margin-bottom: 4px;
        text-align: center;
        transform: none;
        opacity: 1;
    }

    #clutch .heading-2.text-align-center {
        font-size: clamp(23px, 6.5vw, 32px);
        line-height: 1.22;
        letter-spacing: -0.02em;
        color: var(--dark-black-900);
        text-align: center;
        width: 100%;
        word-break: normal;
        overflow-wrap: break-word;
    }

    #clutch .heading-wrap-testimoniall {
        width: auto;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px 8px;
        position: static;
    }

    #clutch .heading-2.text-align-center.size {
        width: auto;
        max-width: 100%;
        margin-top: 0;
        white-space: normal;
        overflow: visible;
        font-size: clamp(23px, 6.5vw, 32px);
        line-height: 1.22;
        display: inline-block;
        opacity: 1;
    }

    #clutch .heading-2.text-align-center.margin-2 {
        margin-top: 0;
        font-size: clamp(23px, 6.5vw, 32px);
        line-height: 1.22;
        display: inline-block;
    }

    #clutch .icon-clutch-full {
        display: none;
    }

    #clutch .clutch-mob {
        display: block;
        width: 105px;
        max-width: 35vw;
        height: auto;
        margin: 10px auto 0 auto;
        object-fit: contain;
    }

    /* 2. Industries We Serve Section */
    #industries-we-serve.industry-table-section {
        padding: 55px 0 65px;
    }

    #industries-we-serve .industry-heading {
        font-size: clamp(25px, 6vw, 32px);
        line-height: 1.25;
        margin-bottom: 10px;
        text-align: center;
    }

    #industries-we-serve .industry-header {
        margin-bottom: 28px;
    }

    #industries-we-serve .industry-table-wrapper {
        width: 100%;
        gap: 10px;
    }

    #industries-we-serve .industry-table-row.header-row {
        display: none;
    }

    #industries-we-serve .industry-table-row {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "number industry"
            "services services";
        gap: 10px 14px;
        align-items: center;
        padding: 16px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.025);
        margin-bottom: 10px;
        box-sizing: border-box;
        width: 100%;
        cursor: default;
    }

    #industries-we-serve .industry-table-row::after {
        display: none;
    }

    #industries-we-serve .col-number {
        grid-area: number;
        font-size: 15px;
        font-weight: 700;
        color: #00b4d8;
        line-height: 1;
        margin: 0;
    }

    #industries-we-serve .col-industry {
        grid-area: industry;
        margin: 0;
        width: 100%;
    }

    #industries-we-serve .industry-row-title {
        font-size: clamp(18px, 4.8vw, 21px);
        font-weight: 600;
        color: #f1f5f9;
        margin: 0;
        line-height: 1.3;
        transform: none;
    }

    #industries-we-serve .col-services {
        grid-area: services;
        display: flex;
        flex-wrap: wrap;
        gap: 7px 8px;
        width: 100%;
        margin-top: 2px;
        justify-content: flex-start;
        align-items: center;
    }

    #industries-we-serve .industry-pill {
        font-size: 12.5px;
        padding: 6px 11px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.09);
        color: #cbd5e1;
        white-space: normal;
        text-align: left;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        line-height: 1.3;
        word-break: break-word;
        transform: none;
    }

    #industries-we-serve .industry-pill::before {
        width: 5px;
        height: 5px;
        flex-shrink: 0;
    }

    #industries-we-serve .industry-table-row.item-row:hover,
    #industries-we-serve .industry-table-row.item-row:active {
        background: rgba(0, 180, 216, 0.06);
        border-color: rgba(0, 180, 216, 0.25);
        padding-left: 14px;
        transform: none;
    }

    #industries-we-serve .cursor-hover-card {
        display: none;
    }

    #clutch .raiting-data {
        padding-top: 0;
    }

    #clutch .clutch-touch-swiper .swiper-slide {
        grid-row-gap: 1rem;
    }
}

/* --- Below Mobile Size / Small Screens (max-width: 480px) --- */
@media (max-width: 480px) {
    #clutch .header-block {
        margin-bottom: 18px;
    }

    #clutch .haeding-block-testimonial {
        margin-top: 0.75rem;
    }

    #clutch .heading-2.text-align-center,
    #clutch .heading-2.text-align-center.size,
    #clutch .heading-2.text-align-center.margin-2 {
        /* font-size: clamp(20px, 6.6vw, 25px); */
        line-height: 1.24;
    }

    #clutch .clutch-mob {
        width: 95px;
        margin-top: 8px;
    }

    #industries-we-serve.industry-table-section {
        padding: 45px 0 50px;
    }

    #industries-we-serve .industry-header {
        margin-bottom: 20px;
    }

    #industries-we-serve .industry-heading {
        font-size: 25px;
    }

    #industries-we-serve .industry-table-row {
        padding: 13px 11px;
        gap: 8px 10px;
        margin-bottom: 8px;
        border-radius: 10px;
    }

    #industries-we-serve .industry-row-title {
        font-size: 17px;
    }

    #industries-we-serve .col-number {
        font-size: 13px;
    }

    #industries-we-serve .col-services {
        gap: 6px;
    }

    #industries-we-serve .industry-pill {
        font-size: 11.5px;
        padding: 5px 9px;
        gap: 6px;
    }
}

/* ==========================================================================
   Creative Inquiry Section - Ultra Responsive Below 380px & Small Mobile
   ========================================================================== */
@media (max-width: 480px) {
    .creative-inquiry-section {
        padding: 50px 0 60px;
    }

    .creative-inquiry-section .creative-inquiry-container {
        padding: 0 14px;
    }

    .creative-inquiry-section .form-card-glass {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .creative-inquiry-section .form-header h3 {
        font-size: 22px;
    }

    .creative-inquiry-section .form-header p {
        font-size: 13.5px;
    }
}

@media (max-width: 380px) {
    .creative-inquiry-section {
        padding: 40px 0 50px;
        overflow: hidden;
    }

    .creative-inquiry-section .creative-inquiry-container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .creative-content-wrapper {
        gap: 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .creative-text-block {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .creative-badge {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 18px;
    }

    .creative-inquiry-section .creative-heading {
        font-size: clamp(22px, 7vw, 28px);
        line-height: 1.2;
        margin-bottom: 14px;
        word-break: break-word;
    }

    .creative-inquiry-section .creative-desc {
        font-size: 13.5px;
        line-height: 1.45;
        margin-bottom: 20px;
    }

    .creative-inquiry-section .creative-actions {
        gap: 10px;
        margin-bottom: 20px;
    }

    .creative-inquiry-section .btn-primary-purple,
    .creative-inquiry-section .btn-secondary-gray {
        padding: 12px 18px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .creative-form-block {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .form-card-glass {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 12px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .creative-inquiry-section .form-header {
        margin-bottom: 16px;
    }

    .creative-inquiry-section .form-header h3 {
        font-size: 19px;
        line-height: 1.25;
        margin-bottom: 6px;
        word-break: break-word;
    }

    .creative-inquiry-section .form-header p {
        font-size: 12.5px;
        line-height: 1.35;
        word-break: break-word;
    }

    .creative-inquiry-section .creative-form {
        gap: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .form-row {
        gap: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .input-wrapper {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .creative-inquiry-section .c-input {
        padding: 18px 10px 6px 10px;
        font-size: 13.5px;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .input-wrapper label {
        left: 11px;
        top: 12px;
        font-size: 13px;
    }

    .creative-inquiry-section .phone-wrapper {
        --phone-offset: 90px;
    }

    .creative-inquiry-section .phone-wrapper label {
        left: var(--phone-offset, 76px);
        top: 12px;
    }

    .creative-inquiry-section .c-select {
        padding: 18px 28px 6px 10px;
        font-size: 13.5px;
        background-position: right 10px center;
        background-size: 14px 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .creative-inquiry-section .textarea-wrapper .c-input {
        min-height: 85px;
        padding-top: 20px;
    }

    .creative-inquiry-section .textarea-wrapper label {
        top: 13px;
    }

    .creative-inquiry-section .recaptcha-wrap {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        transform: scale(0.85);
        transform-origin: center center;
        margin: -6px 0;
        overflow: hidden;
    }

    .creative-inquiry-section .submit-btn-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        box-sizing: border-box;
    }

    .creative-inquiry-section .submit-btn-wrap .btn-primary-orange {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        justify-content: center;
        box-sizing: border-box;
    }

    .creative-inquiry-section .floating-badge {
        bottom: -10px;
        left: 8px;
        padding: 5px 10px;
        border-radius: 10px;
        font-size: 11px;
        box-sizing: border-box;
    }

    .creative-inquiry-section .floating-badge img {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

.creative-inquiry-section .cta-left.coffee-cup-box, .creative-inquiry-section .coffee-cup-box {
        width: 180px;
        height: 120px;
        margin: unset;
        left: 0;
        bottom: 0;
        transform: scale(0.75);
        position: relative;
    }

    .web3-main-heading {
        font-size: 26px;
    }

    .innovate-heading,
    .dev-heading {
        font-size: 26px;
    }

    .btn-primary-orange,
    .btn-secondary-gray,
    .btn-primary-purple {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cs-btn {
        padding: 10px 20px;
    }

    .dev-card {
        padding: 30px 20px;
    }

    .subserv-blog-slider-controls .subserv-blog-view-all-btn {
        font-size: 12px !important;
    }
}

@media (max-width: 330px) {
    .creative-inquiry-section .creative-inquiry-container {
        padding: 0 6px;
    }

    .creative-inquiry-section .form-card-glass {
        padding: 16px 8px;
        border-radius: 12px;
    }

    .creative-inquiry-section .recaptcha-wrap {
        transform: scale(0.74);
        transform-origin: center center;
    }
}

/* ==========================================================================
   Common Legal & Policy Pages (Terms & Conditions, Privacy Policy, Cookie Policy)
   ========================================================================== */
.legal-policy-wrap {
    padding-top: 130px;
    padding-bottom: 80px;
    background: #ffffff;
    min-height: 80vh;
}

.legal-policy-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-header-box {
    text-align: center;
    margin-bottom: 48px;
}

.legal-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fe4a23;
    background: rgba(254, 74, 35, 0.08);
    border: 1px solid rgba(254, 74, 35, 0.2);
    border-radius: 50px;
    margin-bottom: 16px;
}

.legal-tag-badge i {
    font-size: 12px;
}

.legal-page-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.legal-last-updated {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.legal-last-updated i {
    color: #fe4a23;
}

/* Two-Column Layout: Left TOC + Right Content */
.legal-layout-grid {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    position: relative;
}

.legal-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 20;
}

.legal-main-content {
    flex: 1;
    min-width: 0;
}

.legal-content-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 38px;
    scroll-margin-top: 130px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-sec-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.35;
}

.legal-sec-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #fe4a23;
    background: rgba(254, 74, 35, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.legal-sec-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.legal-sec-subtitle i {
    display: none !important;
}

.legal-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 14px;
    font-weight: 400;
}

.legal-text a {
    color: #fe4a23;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-text a:hover {
    color: #e64a19;
}

.legal-list {
    margin: 0 0 16px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-list li {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
}

.legal-list li strong {
    color: #0f172a;
    font-weight: 600;
}

.legal-highlight-box {
    background: linear-gradient(135deg, rgba(254, 74, 35, 0.04) 0%, rgba(119, 77, 255, 0.04) 100%);
    border-left: 4px solid #fe4a23;
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 22px 0;
}

.legal-highlight-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.legal-highlight-title i {
    display: none !important;
}

.legal-highlight-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.legal-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14.5px;
}

.legal-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.legal-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    line-height: 1.6;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.legal-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(254, 74, 35, 0.08);
    border: 1px solid rgba(254, 74, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fe4a23;
    font-size: 17px;
    flex-shrink: 0;
}

.legal-contact-details h6 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.legal-contact-details p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.legal-contact-details a {
    color: #fe4a23;
    text-decoration: none;
    font-weight: 500;
}

.legal-contact-details a:hover {
    text-decoration: underline;
}

.legal-divider {
    height: 1px;
    background: #e2e8f0;
    border: none;
    margin: 36px 0;
}

/* Left Sidebar Table of Contents Card */
.legal-toc-box {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 24px 20px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04) !important;
    margin-bottom: 24px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.legal-toc-box::-webkit-scrollbar {
    width: 4px;
}

.legal-toc-box::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.legal-toc-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-toc-link {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1.45;
    transition: all 0.2s ease;
}

.legal-toc-link:hover,
.legal-toc-link.active {
    color: #fe4a23;
    background: rgba(254, 74, 35, 0.08);
    transform: translateX(3px);
    text-decoration: none;
    font-weight: 600;
}

.legal-toc-link i {
    font-size: 10px;
    color: #fe4a23;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Backward compatibility for privacy-* classes */
.privacy-policy-cont .break-line {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 24px 0;
}

@media only screen and (max-width: 991px) {
    .legal-policy-wrap {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .legal-layout-grid {
        flex-direction: column;
        gap: 32px;
    }

    .legal-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        padding-bottom: 24px;
        border-bottom: 1px solid #e2e8f0;
    }

    .legal-toc-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 6px 12px;
    }

    .legal-page-title {
        font-size: 28px;
    }

    .legal-sec-title {
        font-size: 20px;
    }

    .legal-text,
    .legal-list li {
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .legal-policy-wrap {
        padding-top: 85px;
        padding-bottom: 40px;
    }

    .legal-policy-container {
        padding: 0 16px;
    }

    .legal-page-title {
        font-size: 24px;
    }

    .legal-sec-title {
        font-size: 18px;
    }

    .legal-contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-toc-list {
        grid-template-columns: 1fr;
    }
}