:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #6B7280;
    --light-bg: #F8F8F8;
    --border: #EBEBEB;
    --gradient: linear-gradient(45deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(92, 195, 238, 0.12) 0%, rgba(93, 145, 239, 0.08) 29%, rgba(94, 94, 240, 0.08) 50%, rgba(148, 123, 225, 0.06) 73%, rgba(202, 151, 210, 0.04) 100%);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /*     opacity: .1; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
    padding: 14px 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text) !important;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.navbar-brand span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text) !important;
    padding: 6px 14px !important;
    transition: opacity 0.2s;
    text-decoration: none;
}

.nav-link:hover {
    opacity: 0.55;
}

.btn-hire {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gradient);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(94, 94, 240, 0.22);
}

.btn-hire:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(94, 94, 240, 0.32);
}

.navbar-toggler {
    border: none;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17,17,17,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO ─────────────────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(94, 94, 240, 0.13) 0%, transparent 70%);
    top: -100px;
    right: -60px;
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(92, 195, 238, 0.10) 0%, transparent 70%);
    bottom: 0;
    left: 20%;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient);
    flex-shrink: 0;
}

.hero-heading {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 22px;
}

.hero-heading .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 440px;
    font-weight: 300;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-grad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(94, 94, 240, 0.28);
}

.btn-primary-grad:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 36px rgba(94, 94, 240, 0.36);
}

.btn-outline-dark-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark-custom:hover {
    border-color: #bbb;
    background: var(--light-bg);
    color: var(--text);
}

/* ─── HERO VISUAL ─────────────────────────────── */
.hero-visual-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 24px 26px;
    position: absolute;
    transition: transform 0.4s ease;
}

.hero-card-main {
    width: 300px;
    top: 40px;
    right: 60px;
    z-index: 3;
    animation: floatA 5s ease-in-out infinite;
}

.hero-card-stat {
    width: 180px;
    bottom: 100px;
    right: 20px;
    z-index: 4;
    animation: floatB 4.5s ease-in-out infinite;
}

.hero-card-badge {
    width: 200px;
    top: 180px;
    left: 30px;
    z-index: 4;
    animation: floatC 5.5s ease-in-out infinite;
}

.hero-card-mini {
    width: 145px;
    top: 20px;
    left: 100px;
    z-index: 2;
    animation: floatA 6s ease-in-out infinite;
    padding: 16px 18px;
}

@keyframes floatA {

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

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

@keyframes floatB {

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

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

@keyframes floatC {

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

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

.hero-blob {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--gradient-soft);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(2px);
}

.card-label-sm {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.card-title-sm {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.card-bar {
    height: 6px;
    border-radius: 10px;
    background: var(--light-bg);
    margin-bottom: 6px;
    overflow: hidden;
}

.card-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--gradient);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 400;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 48px;
    font-weight: 400;
}

.scroll-line {
    width: 36px;
    height: 1px;
    background: var(--muted);
}

/* ─── SECTION COMMON ─────────────────────────────── */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
}

/* ─── SERVICES ─────────────────────────────── */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.3s;
}

.service-card:hover .service-icon-wrap {
    background: var(--gradient);
}

.service-icon-wrap i {
    font-size: 1.3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover .service-icon-wrap i {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 18px;
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.service-card:hover .service-arrow {
    color: var(--text);
    gap: 10px;
}

/* ─── WORK ─────────────────────────────── */
.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--light-bg);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.work-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.work-img-placeholder {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.work-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.work-card:hover .work-img-placeholder::after {
    opacity: 0.08;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.work-card:hover .work-overlay-btn {
    transform: translateY(0);
}

.work-info {
    padding: 22px 22px 24px;
}

.work-category {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

/* ─── PROCESS ─────────────────────────────── */
.process-section {
    background: var(--light-bg);
}

.process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.process-card:hover .process-number {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.process-connector-line {
    width: 40px;
    height: 1px;
    background: var(--border);
}

/* ─── BLOG ─────────────────────────────── */
.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
    height: 200px;
    overflow: hidden;
}

.blog-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-placeholder {
    transform: scale(1.04);
}

.blog-body {
    padding: 24px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--gradient-soft);
    background: var(--light-bg);
    color: var(--muted);
    margin-bottom: 14px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.blog-date {
    font-size: 0.78rem;
    color: var(--muted);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--text);
}

/* ─── CTA + FORM ─────────────────────────────── */
.cta-section {
    background: var(--light-bg);
}

.cta-left-wrap {
    padding-right: 60px;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.cta-heading .grad-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 400;
}

.cta-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 42px 40px;
    box-shadow: var(--shadow-md);
}

.form-label-custom {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
    display: block;
}

.form-control-custom {
    width: 100%;
    background: var(--light-bg);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
}

.form-control-custom:focus {
    border-color: #947be1;
    background: #fff;
}

.form-control-custom::placeholder {
    color: #b0b7c3;
}

select.form-control-custom {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 110px;
}

.form-group-custom {
    margin-bottom: 20px;
}

/* ─── STATS BAR ─────────────────────────────── */
.stats-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 400;
}

.stats-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* ─── TECH MARQUEE ─────────────────────────────── */
.tech-section {
    padding: 60px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.tech-pill i {
    font-size: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
    background: #0c0c0e;
    padding: 80px 0 40px;
    color: #a0a0aa;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    display: block;
}

.footer-brand span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #6b6b75;
    max-width: 260px;
    font-weight: 300;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: #6b6b75;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #2a2a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b6b75;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.footer-divider {
    border-color: #1e1e22;
    margin: 48px 0 32px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #4a4a52;
}

.footer-email {
    font-size: 0.875rem;
    color: #6b6b75;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}

.footer-email:hover {
    color: #fff;
}

/* ─── MISC HELPERS ─────────────────────────────── */
.grad-icon-bg {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gradient);
    display: inline-block;
    margin: 0 8px;
}

/* color bg placeholders for work cards */
.bg-work-1 {
    background: linear-gradient(135deg, #e8f4fd 0%, #d6eeff 100%);
}

.bg-work-2 {
    background: linear-gradient(135deg, #f0edfd 0%, #e2d9f9 100%);
}

.bg-work-3 {
    background: linear-gradient(135deg, #fdf0f8 0%, #fde2f3 100%);
}

.bg-work-4 {
    background: linear-gradient(135deg, #f0fdf4 0%, #d9f5e5 100%);
}

.bg-work-5 {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.bg-work-6 {
    background: linear-gradient(135deg, #fef2f2 0%, #fde8d8 100%);
}

.bg-blog-1 {
    background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 100%);
}

.bg-blog-2 {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.bg-blog-3 {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991px) {
    .hero-visual-wrap {
        min-height: 360px;
        margin-top: 60px;
    }

    .hero-card-main {
        width: 240px;
        top: 20px;
        right: 20px;
    }

    .hero-card-stat {
        width: 150px;
        bottom: 60px;
        right: 10px;
    }

    .hero-card-badge {
        width: 170px;
        top: 140px;
        left: 10px;
    }

    .hero-card-mini {
        width: 130px;
        top: 10px;
        left: 60px;
    }

    .hero-blob {
        width: 300px;
        height: 300px;
    }

    .cta-left-wrap {
        padding-right: 0;
        margin-bottom: 48px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-visual-wrap {
        min-height: 300px;
    }

    .stats-bar .stats-divider {
        display: none;
    }

    .contact-form-card {
        padding: 28px 22px;
    }
}

/* ─── REVEAL ANIMATION ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ================ ABout Us =========================== */

/* ── TYPOGRAPHY HELPERS ── */
.grad-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px
}

.sec-h {
    font-family: var(--fd);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px
}

.sec-p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300
}

/* ── BUTTONS ── */
.btn-g {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: #fff;
    font-family: var(--fb);
    font-weight: 600;
    font-size: .9rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(94, 94, 240, .28)
}

.btn-g:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 36px rgba(94, 94, 240, .36)
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: var(--fb);
    font-weight: 600;
    font-size: .9rem;
    padding: 12px 26px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    transition: border-color .2s, background .2s
}

.btn-o:hover {
    border-color: #bbb;
    background: var(--light);
    color: var(--text)
}

/* ── INNER BANNER ── */
.inner-banner {
    background: var(--light);
    padding: 130px 0 72px;
    position: relative;
    overflow: hidden
}

.inner-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 94, 240, .09) 0%, transparent 70%);
    top: -200px;
    right: -80px;
    pointer-events: none
}

.inner-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 195, 238, .08) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
    pointer-events: none
}

.banner-lbl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px
}

.blbl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gradient);
    flex-shrink: 0
}

.banner-title {
    font-family: var(--fd);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.10;
    color: var(--text);
    margin-bottom: 20px
}

.breadcrumb-cc {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0
}

.breadcrumb-cc li {
    font-size: .82rem;
    color: var(--muted)
}

.breadcrumb-cc li a {
    color: var(--muted);
    transition: color .2s
}

.breadcrumb-cc li a:hover {
    color: var(--text)
}

.breadcrumb-cc li.active {
    color: var(--text);
    font-weight: 500
}

/* ── WHO SECTION ── */
.who-section {
    background: #fff
}

.who-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden
}

.who-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 40%, #a78bfa 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem
}

.who-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 20px;
    box-shadow: var(--lg)
}

.who-badge-num {
    font-family: var(--fd);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.who-badge-lbl {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 400
}

.who-badge-2 {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 18px;
    box-shadow: var(--md)
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .925rem;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.6
}

.check-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    flex-shrink: 0;
    margin-top: 2px
}

/* ── MISSION/VISION ── */
.mv-section {
    background: var(--light)
}

.mv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lg)
}

.mv-card:hover::before {
    transform: scaleX(1)
}

.mv-num {
    font-family: var(--fd);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(94, 94, 240, .12) 0%, rgba(148, 123, 225, .08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px
}

.mv-card:hover .mv-num {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background .3s
}

.mv-icon i {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.mv-card:hover .mv-icon {
    background: var(--gradient)
}

.mv-card:hover .mv-icon i {
    background: none;
    -webkit-text-fill-color: #fff
}

.mv-title {
    font-family: var(--fd);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px
}

.mv-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300
}

/* ── SKILLS GRID ── */
.skill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--border)
}

.skill-row:last-child {
    border-bottom: none
}

.skill-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text)
}

.skill-bar-track {
    flex: 1;
    height: 6px;
    background: var(--light);
    border-radius: 10px;
    margin: 0 20px;
    overflow: hidden
}

.skill-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--gradient)
}

.skill-pct {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    min-width: 36px;
    text-align: right
}

/* ── PROCESS TIMELINE ── */
.timeline-section {
    background: var(--light)
}

.tl-item {
    display: flex;
    gap: 32px;
    position: relative;
    padding-bottom: 52px
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-item:last-child .tl-line {
    display: none
}

.tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0
}

.tl-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--fd);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(94, 94, 240, .3)
}

.tl-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(94, 94, 240, .3), transparent);
    margin-top: 8px;
    min-height: 40px
}

.tl-content {
    padding-top: 12px
}

.tl-title {
    font-family: var(--fd);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

.tl-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 480px
}

/* ── TECH GRID ── */
.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    transition: transform .2s, box-shadow .2s, border-color .2s
}

.tech-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--md);
    border-color: transparent
}

.tech-pill i {
    font-size: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--light);
    padding: 90px 0;
    text-align: center
}

.cta-band-inner {
    max-width: 600px;
    margin: 0 auto
}

.cta-band h2 {
    font-family: var(--fd);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.8px;
    margin-bottom: 16px
}

.cta-band p {
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 300
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.rd1 {
    transition-delay: .1s
}

.rd2 {
    transition-delay: .2s
}

.rd3 {
    transition-delay: .3s
}

.rd4 {
    transition-delay: .4s
}

@media(max-width:767px) {
    section {
        padding: 68px 0
    }

    .tl-item {
        flex-direction: column;
        gap: 16px
    }

    .tl-left {
        flex-direction: row
    }

    .tl-line {
        display: none
    }
}

/* ===================================== */

/* Service Detail Page  */

/* SERVICE OVERVIEW */
.overview-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 28px rgba(94, 94, 240, .3)
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--soft);
    border: 1px solid rgba(94, 94, 240, .15);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .78rem;
    font-weight: 600;
    color: #5e5ef0;
    margin: 4px
}

/* PROBLEMS */
.problem-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 26px;
    height: 100%;
    transition: transform .3s, box-shadow .3s
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--md)
}

.prob-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.prob-icon i {
    font-size: 1.1rem;
    color: #ef4444
}

.problem-card h5 {
    font-family: var(--fd);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

.problem-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin: 0
}

/* FEATURES */
.features-section {
    background: var(--light)
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
    height: 100%;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lg);
    border-color: transparent
}

.feature-card:hover::before {
    transform: scaleX(1)
}

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background .3s
}

.feat-icon i {
    font-size: 1.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.feature-card:hover .feat-icon {
    background: var(--gradient)
}

.feature-card:hover .feat-icon i {
    background: none;
    -webkit-text-fill-color: #fff
}

.feature-card h5 {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px
}

.feature-card p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin: 0
}

/* PROCESS */
.step-num {
    font-family: var(--fd);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(94, 94, 240, .15), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
    transition: background .3s
}

.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
    height: 100%;
    transition: transform .3s, box-shadow .3s
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lg)
}

.step-card:hover .step-num {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* FAQ */
.faq-section {
    background: var(--light)
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rs);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s
}

.faq-item:hover {
    box-shadow: var(--md)
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: var(--fd);
    font-size: .975rem;
    font-weight: 700;
    color: var(--text);
    gap: 16px;
    transition: color .2s
}

.faq-btn.active {
    color: #5e5ef0
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s
}

.faq-btn.active .faq-icon {
    background: var(--gradient);
    border-color: transparent;
    color: #fff
}

.faq-body {
    padding: 0 24px 22px;
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    display: none
}

.faq-body.show {
    display: block
}

/* QUERY FORM */
.cc-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 42px 40px;
    box-shadow: var(--md)
}

.form-lbl {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
    display: block
}

.form-ctrl {
    width: 100%;
    background: var(--light);
    border: 1.5px solid transparent;
    border-radius: var(--rs);
    padding: 12px 16px;
    font-family: var(--fb);
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: border-color .2s, background .2s;
    appearance: none
}

.form-ctrl:focus {
    border-color: #947be1;
    background: #fff
}

.form-ctrl::placeholder {
    color: #b0b7c3
}

select.form-ctrl {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    background-color: var(--light)
}

textarea.form-ctrl {
    resize: vertical;
    min-height: 110px
}

.fgrp {
    margin-bottom: 20px
}

/* CTA */
.cta-band {
    background: var(--light);
    padding: 90px 0;
    text-align: center
}

.cta-band h2 {
    font-family: var(--fd);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.8px;
    margin-bottom: 16px
}

.cta-band p {
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 300
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.rd1 {
    transition-delay: .1s
}

.rd2 {
    transition-delay: .2s
}

.rd3 {
    transition-delay: .3s
}

.rd4 {
    transition-delay: .4s
}

@media(max-width:767px) {
    section {
        padding: 68px 0
    }

    .cc-form-card {
        padding: 28px 20px
    }
}


/* =================== BLOG DETAIL PAGE ====================== */


.blog-hero-img {
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
    margin-bottom: 56px;
    background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    border: 1px solid var(--border);
}

.article-body {
    font-size: 1.025rem;
    line-height: 1.9;
    color: #2d2d2d;
    font-weight: 300;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
    margin: 48px 0 18px;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 36px 0 14px;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body ul {
    padding-left: 20px;
    margin-bottom: 22px;
}

.article-body ul li {
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 3px solid transparent;
    border-image: var(--gradient) 1;
    padding: 20px 28px;
    background: var(--light-bg);
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 400;
}

.article-body .highlight-box {
    padding: 28px 30px;
    background: var(--gradient-soft);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(94, 94, 240, .15);
    margin: 32px 0;
}

.article-body code {
    background: var(--light-bg);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: .9em;
    color: #5e5ef0;
    border: 1px solid var(--border);
}

.toc-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px 26px;
    position: sticky;
    top: 100px;
}

.toc-title {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.toc-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-links li {
    margin-bottom: 8px;
}

.toc-links a {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.toc-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gradient);
    flex-shrink: 0;
}

.toc-links a:hover {
    background: #fff;
    color: var(--text);
}

.toc-links a.active {
    background: #fff;
    color: var(--text);
    font-weight: 600;
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 32px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(94, 94, 240, .3);
}

.author-avatar i {
    font-size: 1.8rem;
    color: #fff;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.author-role {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.author-bio {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

.share-bar {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    cursor: pointer;
}

.share-btn:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}


/* ══════════════════════════════════════════
       CONTACT PAGE
    ══════════════════════════════════════════ */
    .contact-method {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 28px 28px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: transform .25s, box-shadow .25s;
    }

    .contact-method:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .contact-method-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(94, 94, 240, .28);
    }

    .contact-method-icon i {
      font-size: 1.2rem;
      color: #fff;
    }

    .contact-method-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .contact-method-val {
      font-family: var(--font-display);
      font-size: .95rem;
      font-weight: 700;
      color: var(--text);
    }

    .contact-method-desc {
      font-size: .78rem;
      color: var(--muted);
      margin-top: 4px;
    }

    .availability-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16, 185, 129, .08);
      border: 1px solid rgba(16, 185, 129, .2);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: .8rem;
      font-weight: 600;
      color: #059669;
      margin-bottom: 32px;
    }

    .avail-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media(max-width:991px) {
      .featured-work {
        flex-direction: column;
      }

      .featured-work-thumb {
        width: 100%;
        min-height: 240px;
      }

      .featured-article {
        flex-direction: column;
      }

      .fa-thumb {
        width: 100%;
        min-height: 240px;
      }

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

      .gallery-item:first-child {
        grid-column: span 1;
        height: 170px;
      }

      .newsletter-wrap {
        flex-direction: column;
        gap: 30px;
        padding: 40px 28px;
      }

      .newsletter-input-wrap {
        max-width: 100%;
        width: 100%;
      }

      .cta-block {
        padding: 50px 28px;
      }

      .form-card {
        padding: 28px 22px;
      }

      .meta-row {
        gap: 24px;
      }
    }

    @media(max-width:767px) {
      section {
        padding: 68px 0;
      }

      .inner-banner {
        padding: 80px 0 50px;
      }

      .timeline {
        padding-left: 44px;
      }

      .page-demo-nav {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 16px;
        overflow: auto;
      }
    }

