:root {
    --primary-color: #0069B3;
    --primary-hover: #005b99;
    --secondary-color: #f8fbff;
    --dark-color: #0c2340;
    --accent-color: #129BDB;
    --hero-start: #0069B3;
    --hero-end: #129BDB;
    --hero-base-start: #030712;
    --hero-base-mid: #081427;
    --hero-base-end: #0c2340;
    --section-dark-start: #061020;
    --section-dark-end: #0c2340;
    --section-soft-start: #081428;
    --section-soft-end: #0069B3;
    --footer-accent-start: #0069B3;
    --footer-accent-mid: #129BDB;
    --footer-accent-end: #0069B3;
    --focus-shadow: rgba(18, 155, 219, 0.35);
    --transition: all 0.3s ease-in-out;
}


[data-theme="light-blue"] {
    --primary-color: #1f7ecf;
    --primary-hover: #1768ad;
    --secondary-color: #f3f9ff;
    --dark-color: #0c2340;
    --accent-color: #67c8ed;
    --hero-start: #8fd3ff;
    --hero-end: #4ca9e6;
    --hero-base-start: #f7fcff;
    --hero-base-mid: #e6f5ff;
    --hero-base-end: #c6e6fb;
    --section-dark-start: #edf8ff;
    --section-dark-end: #cfe9fb;
    --section-soft-start: #e7f4ff;
    --section-soft-end: #b9ddf7;
    --footer-accent-start: #7bc9f0;
    --footer-accent-mid: #c7ebff;
    --footer-accent-end: #5baedd;
    --focus-shadow: rgba(31, 126, 207, 0.22);
}

[data-theme="light-blue"] #hero,
[data-theme="light-blue"] .landing-band,
[data-theme="light-blue"] .landing-band-soft {
    color: #0c2340;
}

[data-theme="light-blue"] body {
    background: #eef7ff;
    color: #0c2340;
}

[data-theme="light-blue"] .hero-title,
[data-theme="light-blue"] .section-title,
[data-theme="light-blue"] .stats-number {
    color: #0c2340;
}

[data-theme="light-blue"] .hero-subtitle,
[data-theme="light-blue"] .hero-description,
[data-theme="light-blue"] .section-copy,
[data-theme="light-blue"] .stats-label {
    color: rgba(12, 35, 64, 0.78);
}

[data-theme="light-blue"] .hero-badge,
[data-theme="light-blue"] .section-kicker {
    color: rgba(12, 35, 64, 0.82);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(31, 126, 207, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.reveal-wrapper {
    overflow: hidden;
    display: block;
    vertical-align: bottom;
}

.reveal-item {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    filter: blur(10px);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1.2s ease,
    filter 1.2s ease;
}

.reveal-item.active {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
}

.site-navbar {
    background: rgba(255, 255, 255, 0.28);

    border-bottom: 1px solid rgba(18, 155, 219, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}


[data-theme="light-blue"] .site-navbar {
    background: rgba(244, 251, 255, 0.96);
    border-bottom: 1px solid rgba(18, 155, 219, 0.12);
}

[data-theme="dark-blue"] .site-navbar {
    background: rgba(6, 16, 32, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-logo {
    height: 40px;
    width: auto;
}

.site-logo-light {
    display: none;
}

.site-logo-dark {
    display: block;
}

[data-theme="light-blue"] .site-logo-dark {
    display: block;
}

[data-theme="light-blue"] .site-logo-light {
    display: none;
}

[data-theme="dark-blue"] .site-logo-dark {
    display: none;
}

[data-theme="dark-blue"] .site-logo-light {
    display: block;
}

[data-theme="dark-blue"] .site-navbar .btn-outline-primary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark-blue"] .site-navbar .btn-outline-primary:hover,
[data-theme="dark-blue"] .site-navbar .btn-outline-primary:focus {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

[data-theme="light-blue"] .landing-band .section-title,
[data-theme="light-blue"] .landing-band-soft .section-title {
    color: #0c2340;
}

[data-theme="light-blue"] .landing-band .section-copy,
[data-theme="light-blue"] .landing-band-soft .section-copy {
    color: rgba(12, 35, 64, 0.78);
}

[data-theme="light-blue"] .landing-band .section-kicker,
[data-theme="light-blue"] .landing-band-soft .section-kicker {
    color: rgba(12, 35, 64, 0.82);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(31, 126, 207, 0.14);
}

[data-theme="light-blue"] .hero-glass {
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(18, 155, 219, 0.18);
    box-shadow: 0 24px 56px rgba(50, 116, 168, 0.14);
}

[data-theme="light-blue"] .hero-actions .btn-outline-light {
    color: #0c2340;
    border-color: rgba(12, 35, 64, 0.16);
    background: rgba(255, 255, 255, 0.54);
}

[data-theme="light-blue"] .hero-actions .btn-outline-light:hover,
[data-theme="light-blue"] .hero-actions .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.88);
    color: #0c2340;
}

#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.24), transparent 25%),
    radial-gradient(circle at bottom right, rgba(0, 105, 179, 0.22), transparent 30%),
    linear-gradient(
            135deg,
            var(--hero-base-start) 0%,
            var(--hero-base-mid) 45%,
            var(--hero-base-end) 100%
    );
}

.hero-shader-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-shader-layer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
    opacity: 0.18;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    z-index: 1;
    animation: none;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-orb-one {
    width: 320px;
    height: 320px;
    top: 8%;
    left: 8%;
    background: rgba(18, 155, 219, 0.38);
}

.hero-orb-two {
    width: 380px;
    height: 380px;
    right: 6%;
    bottom: 10%;
    background: rgba(0, 105, 179, 0.34);
    animation-delay: 2s;
}

.hero-glass {
    position: relative;
    padding: 4rem 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-split {
    min-height: 92vh;
}

.hero-glass-left {
    max-width: 820px;
    text-align: left;
    margin-right: auto;
}

.hero-glass-left .hero-badge,
.hero-glass-left .hero-subtitle,
.hero-glass-left .hero-description {
    text-align: left;
}

.hero-glass-left .hero-description {
    margin-left: 0;
    margin-right: 0;
}

.hero-space {
    min-height: 420px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.1vw, 1.45rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1rem;
}

.hero-description {
    max-width: 760px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions .btn {
    min-width: 210px;
}

.hero-actions .btn-outline-light {
    border-width: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(14px, -18px, 0) scale(1.04);
    }
}

@media (max-width: 767px) {
    #hero {
        min-height: 88vh;
        padding: 2rem 0;
    }

    .hero-glass {
        padding: 2.5rem 1.25rem;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-split {
        min-height: auto;
    }

    .hero-glass-left {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-glass-left .hero-badge,
    .hero-glass-left .hero-subtitle,
    .hero-glass-left .hero-description {
        text-align: center;
    }

    .hero-glass-left .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-space {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }
}

.landing-band {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background: linear-gradient(
            180deg,
            var(--section-dark-start) 0%,
            var(--section-dark-end) 100%
    );
}

.landing-band-soft {
    background: linear-gradient(
            180deg,
            var(--section-soft-start) 0%,
            var(--section-soft-end) 100%
    );
}

.landing-band-light {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #eef5ff 100%);
}

[data-theme="light-blue"] .landing-band-light {
    background: radial-gradient(circle at top left, rgba(31, 126, 207, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fdff 0%, #e8f5ff 100%);
}

.section-orb {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: heroFloat 14s ease-in-out infinite;
}

.section-orb-left {
    top: 12%;
    left: 5%;
    background: rgba(18, 155, 219, 0.22);
}

.section-orb-right {
    right: 7%;
    top: 18%;
    background: rgba(0, 105, 179, 0.2);
    animation-delay: 3s;
}

.section-glass {
    position: relative;
    border-radius: 28px;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.section-glass-center {
    max-width: 920px;
    margin: 0 auto;
}

.landing-band-light .section-glass {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 30px 70px rgba(10, 37, 64, 0.12);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-band-light .section-kicker {
    color: rgba(0, 86, 179, 0.8);
    background: rgba(0, 105, 179, 0.06);
    border-color: rgba(0, 105, 179, 0.12);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.landing-band-light .section-title {
    color: #0c2340;
}

.section-copy {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.9;
}

.landing-band-light .section-copy {
    color: rgba(12, 35, 64, 0.74);
}

#stats.landing-band-light .section-title {
    color: #0c2340;
}

#stats.landing-band-light .section-kicker {
    color: rgba(0, 86, 179, 0.8);
    background: rgba(0, 105, 179, 0.06);
    border-color: rgba(0, 105, 179, 0.12);
}

.stats-card {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(0, 86, 179, 0.95), rgba(0, 61, 122, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 61, 122, 0.22);
    cursor: pointer;
}


.stats-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 1.35rem;
}

.stats-number {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.stats-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
}

[data-theme="light-blue"] .stats-card {
    background: linear-gradient(180deg, rgba(225, 242, 255, 0.98), rgba(194, 224, 245, 0.98));
    border: 1px solid rgba(18, 155, 219, 0.16);
    box-shadow: 0 24px 56px rgba(40, 102, 150, 0.12);
}

[data-theme="light-blue"] .stats-icon {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.18), rgba(255, 255, 255, 0.74));
    border: 1px solid rgba(18, 155, 219, 0.16);
    color: var(--primary-color);
}

[data-theme="light-blue"] .stats-number {
    color: #0c2340;
}

[data-theme="light-blue"] .stats-label {
    color: rgba(12, 35, 64, 0.72);
}

.card {
    transition: var(--transition);
    border-radius: 15px;
    border: none;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* تنسيق خاص لكروت المشاريع لضمان تناسق الطول */
.project-card {
    background: #fff;
    overflow: hidden;
}

.service-card-light,
.project-card-light {
    background: rgba(255, 255, 255, 0.96);
}

[data-theme="light-blue"] .service-card-light,
[data-theme="light-blue"] .project-card-light {
    background: rgba(231, 244, 255, 0.92);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.08);
}

.service-card-light,
.project-card-light,
.client-tile,
.stats-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card-light:hover,
.project-card-light:hover,
.client-tile:hover,
.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 105, 179, 0.16) !important;
}

.stats-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 28px 60px rgba(0, 105, 179, 0.22) !important;
    border-color: rgba(18, 155, 219, 0.35);
    background: linear-gradient(180deg, rgba(0, 105, 179, 1), rgba(0, 61, 122, 0.96));
}

.stats-card:hover .stats-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.24), rgba(255, 255, 255, 0.1));
}

.stats-card:hover .stats-number {
    color: #ffffff;
}

.stats-card:hover .stats-label {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light-blue"] .stats-card:hover {
    box-shadow: 0 28px 60px rgba(31, 126, 207, 0.16) !important;
    border-color: rgba(18, 155, 219, 0.28);
    background: linear-gradient(180deg, rgba(212, 236, 252, 1), rgba(183, 218, 242, 1));
}

[data-theme="light-blue"] .stats-card:hover .stats-icon {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.22), rgba(255, 255, 255, 0.82));
}

[data-theme="light-blue"] .stats-card:hover .stats-number {
    color: #0c2340;
}

[data-theme="light-blue"] .stats-card:hover .stats-label {
    color: rgba(12, 35, 64, 0.84);
}

.service-card-light:hover,
.project-card-light:hover,
.client-tile:hover {
    border: 1px solid rgba(18, 155, 219, 0.18);
}

.service-card-premium {
    padding: 2.25rem 2rem !important;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.5rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.12), rgba(0, 105, 179, 0.06));
    border: 1px solid rgba(18, 155, 219, 0.12);
}

[data-theme="light-blue"] .service-icon-wrap {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.16), rgba(255, 255, 255, 0.4));
    border-color: rgba(18, 155, 219, 0.18);
}

.service-icon {
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.85rem;
}

.service-description {
    color: rgba(12, 35, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-hover-link {
    margin-top: auto;
    padding-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.service-hover-arrow {
    transition: transform 0.28s ease;
}

.service-card-premium:hover .service-hover-link,
.service-card-premium:focus-within .service-hover-link {
    opacity: 1;
    transform: translateY(0);
}

.service-card-premium:hover .service-hover-arrow,
.service-card-premium:focus-within .service-hover-arrow {
    transform: translateX(4px);
}

.service-hover-link:hover,
.service-hover-link:focus {
    color: var(--primary-hover);
}

.project-card-light {
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(10, 37, 64, 0.1);
}

.project-card-body {
    padding: 1.75rem 1.5rem 1.5rem !important;
}

.project-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.75rem;
}

.project-card-description {
    color: rgba(12, 35, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.project-fallback-media {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.08), rgba(0, 105, 179, 0.04));
}

[data-theme="light-blue"] .project-fallback-media {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.12), rgba(0, 105, 179, 0.06));
}

.project-fallback-icon {
    font-size: 4rem;
    line-height: 1;
    color: #0c2340;
}

.project-card-link {
    margin-top: 1rem;
}

.project-card-link a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 155, 219, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.project-card-link a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- قسم التقنيات (Technologies) --- */
.tech-logo-img {
    max-height: 70px; /* حجم متناسق للتقنيات */
    width: auto;
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transition: var(--transition);
}

.tech-stack-board {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.tech-item {
    min-width: 140px;
    min-height: 110px;
    padding: 1.25rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.landing-band-light .tech-stack-board {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 24px 60px rgba(10, 37, 64, 0.1);
}

.landing-band-light .tech-item {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 155, 219, 0.1);
}

.contact-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #7cc0e8 0%, #c9ebff 100%);
}

.contact-visual {
    position: relative;
    height: 100%;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.35), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 105, 179, 0.32), transparent 32%),
    linear-gradient(135deg, #061020 0%, #0c2340 55%, #0069B3 100%);
    box-shadow: 0 24px 60px rgba(0, 61, 122, 0.16);
}

.contact-shader-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
}

.contact-shader-layer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.contact-visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    color: #fff;
    z-index: 1;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-copy {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 0;
}

.contact-form-card {
    border-radius: 28px;
    padding: 2.25rem 1.75rem;
    background: linear-gradient(180deg, rgba(0, 91, 153, 0.88) 0%, rgba(12, 35, 64, 0.88) 100%);
    color: #fff;
    box-shadow: 0 30px 70px rgba(0, 61, 122, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-form-copy,
.contact-label {
    color: rgba(255, 255, 255, 0.78);
}

.contact-label {
    display: block;
    margin-bottom: 10px;
}

.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-card .form-control {
    background: rgba(255, 255, 255, 0.96);
    color: #0c2340;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-form-card .form-control::placeholder {
    color: rgba(12, 35, 64, 0.45);
}

[data-theme="light-blue"] .contact-section {
    background: linear-gradient(180deg, #f2fbff 0%, #dcefff 100%);
}

[data-theme="light-blue"] .contact-form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(231, 244, 255, 0.94) 100%);
    color: #0c2340;
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 24px 54px rgba(34, 97, 145, 0.1);
}

[data-theme="light-blue"] .contact-form-copy,
[data-theme="light-blue"] .contact-label {
    color: rgba(12, 35, 64, 0.72);
}

[data-theme="light-blue"] .contact-form-card .form-control {
    background: #ffffff;
    color: #0c2340;
    border: 1px solid rgba(12, 35, 64, 0.12);
}

@media (max-width: 991px) {
    .contact-visual {
        min-height: 300px;
    }
}

.tech-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.client-logo-wrapper {
    min-height: 140px; /* يضمن بقاء الشعارات على خط واحد */
    display: flex;
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-tile {
    min-height: 160px;
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: var(--transition);
}

.client-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(10, 37, 64, 0.12);
}

.client-brand-img {
    max-height: 90px; /* الارتفاع المثالي ليكون الشعار واضحاً */
    max-width: 100%;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: var(--transition);
    object-fit: contain;
}

.client-tile:hover .client-brand-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.clients-showcase .section-head {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.clients-showcase .client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.clients-showcase .client-tile {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
    transition: all 0.3s ease-in-out;
}

.clients-showcase .client-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.clients-showcase .client-brand-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: saturate(1);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.clients-showcase .client-tile:hover .client-brand-img {
    filter: saturate(1.15);
    transform: scale(1.04);
    opacity: 1;
}

#clients .section-head {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.client-name-fallback {
    color: rgba(12, 35, 64, 0.72);
    font-weight: 800;
    text-align: center;
}

#clients.landing-band-light {
    background: #dceeff !important;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.client-tile {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
    transition: all 0.3s ease-in-out;
}

#clients .client-tile {
    animation: clientsFloat 5.2s ease-in-out infinite;
    will-change: transform;
}

#clients .client-tile:nth-child(2n) {
    animation-delay: 0.7s;
}

#clients .client-tile:nth-child(3n) {
    animation-delay: 1.4s;
}

.client-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.client-brand-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: saturate(1);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.client-tile:hover .client-brand-img {
    filter: saturate(1.25);
    opacity: 1;
    transform: scale(1.04);
}

[data-theme="dark-blue"] #clients.landing-band-light {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%) !important;
}

[data-theme="dark-blue"] #clients .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #clients .section-copy {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] .client-tile {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

[data-theme="dark-blue"] .client-tile:hover {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

[data-theme="dark-blue"] .client-name-fallback {
    color: rgba(255, 255, 255, 0.78);
}

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

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

.news-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 105, 179, 0.16);
    border-color: rgba(18, 155, 219, 0.18);
}

.news-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-card-body {
    padding: 1.5rem;
}

.news-type-badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.08);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.75rem;
}

.news-card-summary {
    color: rgba(12, 35, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

[data-theme="light-blue"] .news-card {
    background: rgba(231, 244, 255, 0.92);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.08);
}

.testimonial-card {
    border-radius: 24px;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 105, 179, 0.16);
    border-color: rgba(18, 155, 219, 0.18);
}

.testimonial-quote-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.12), rgba(0, 105, 179, 0.06));
    border: 1px solid rgba(18, 155, 219, 0.12);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-quote {
    color: rgba(12, 35, 64, 0.78);
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.testimonial-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0c2340;
}

.testimonial-meta {
    color: rgba(12, 35, 64, 0.62);
    font-size: 0.9rem;
}

[data-theme="light-blue"] .testimonial-card {
    background: rgba(231, 244, 255, 0.92);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.08);
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #dee2e6;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--focus-shadow);
}

/* --- القوائم (Navigation) --- */
.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none; /* يفضل إزالة التسطير لمظهر أنظف */
}

.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.grayscale-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* تحسين مظهر الـ Badge فوق صور المشاريع */
.badge {
    padding: 8px 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.site-footer {
    position: relative;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.18), transparent 30%),
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #f8fafc;
    padding: 0;
    overflow: hidden;
}

[data-theme="light-blue"] .site-footer {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.14), transparent 30%),
    linear-gradient(180deg, #f3fbff 0%, #dceeff 100%);
    color: #0c2340;
}


.footer-main {
    padding: 4rem 0 2.5rem;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    background: transparent !important;
    margin-bottom: 1.25rem;
}


.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

[data-theme="light-blue"] .footer-title,
[data-theme="light-blue"] .footer-heading {
    color: #ffffff;
}

.footer-description {
    max-width: 420px;
    font-size: 1.08rem;
    color: rgba(248, 250, 252, 0.72);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

[data-theme="light-blue"] .footer-description,
[data-theme="light-blue"] .footer-links a,
[data-theme="light-blue"] .footer-contact li,
[data-theme="light-blue"] .footer-bottom p {
    color: rgba(248, 250, 252, 0.72);
}

.footer-heading {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="light-blue"] .social-btn {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {

    margin-bottom: 0.9rem;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.72);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

[data-theme="light-blue"] .footer-links a:hover {
    color: #ffffff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(248, 250, 252, 0.72);
    line-height: 1.7;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    width: 18px;
}

.footer-contact-value {
    unicode-bidi: isolate;
}

.footer-contact-value--ltr {
    direction: ltr;
    display: inline-block;
    text-align: left;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0 1.75rem;
    text-align: center;
}

[data-theme="light-blue"] .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(248, 250, 252, 0.58);
    font-size: 0.92rem;
}

@media (max-width: 767px) {
    .clients-showcase .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* --- Design Rhythm Patch --- */

#approach,
#stats,
#services,
#technologies,
#projects,
#clients,
#testimonials,
#news,
.contact-section {
    padding: 6rem 0;
}

[data-theme="light-blue"] #approach,
[data-theme="light-blue"] #technologies,
[data-theme="light-blue"] #clients {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #eef5ff 100%);
}

[data-theme="light-blue"] #stats,
[data-theme="light-blue"] #testimonials {
    background: linear-gradient(180deg, #eef5ff 0%, #e6f0ff 100%);
}

[data-theme="light-blue"] #services,
[data-theme="light-blue"] #projects,
[data-theme="light-blue"] #news {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.08), transparent 26%),
    linear-gradient(180deg, #edf8ff 0%, #dcefff 100%);
    color: #0c2340;
}

[data-theme="light-blue"] #services .section-kicker,
[data-theme="light-blue"] #projects .section-kicker,
[data-theme="light-blue"] #news .section-kicker {
    color: rgba(0, 86, 179, 0.85);
    background: rgba(0, 105, 179, 0.07);
    border-color: rgba(0, 105, 179, 0.14);
}

[data-theme="light-blue"] #services .section-title,
[data-theme="light-blue"] #projects .section-title,
[data-theme="light-blue"] #news .section-title {
    color: #0c2340;
}

[data-theme="light-blue"] #services .section-copy,
[data-theme="light-blue"] #projects .section-copy,
[data-theme="light-blue"] #news .section-copy {
    color: rgba(12, 35, 64, 0.74);
}

[data-theme="light-blue"] #services .service-card-light,
[data-theme="light-blue"] #projects .project-card-light,
[data-theme="light-blue"] #news .news-card {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(18, 155, 219, 0.12) !important;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08) !important;
}

[data-theme="light-blue"] #services .service-title,
[data-theme="light-blue"] #projects .project-card-title,
[data-theme="light-blue"] #news .news-card-title {
    color: #0c2340 !important;
}

[data-theme="light-blue"] #services .service-description,
[data-theme="light-blue"] #projects .project-card-description,
[data-theme="light-blue"] #news .news-card-summary {
    color: rgba(12, 35, 64, 0.72) !important;
}

[data-theme="light-blue"] #services .service-hover-link {
    color: var(--primary-color);
}

[data-theme="light-blue"] #projects .filter-btn.btn-outline-primary {
    color: rgba(12, 35, 64, 0.78) !important;
    border-color: rgba(12, 35, 64, 0.18) !important;
    background: rgba(255, 255, 255, 0.58) !important;
}

[data-theme="light-blue"] #projects .filter-btn.btn-outline-primary:hover,
[data-theme="light-blue"] #projects .filter-btn.btn-outline-primary:focus {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #0c2340 !important;
}

[data-theme="dark-blue"] #approach,
[data-theme="dark-blue"] #stats,
[data-theme="dark-blue"] #technologies,
[data-theme="dark-blue"] #clients,
[data-theme="dark-blue"] #testimonials {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #approach .section-kicker,
[data-theme="dark-blue"] #stats .section-kicker,
[data-theme="dark-blue"] #technologies .section-kicker,
[data-theme="dark-blue"] #clients .section-kicker,
[data-theme="dark-blue"] #testimonials .section-kicker {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark-blue"] #approach .section-title,
[data-theme="dark-blue"] #stats .section-title,
[data-theme="dark-blue"] #technologies .section-title,
[data-theme="dark-blue"] #clients .section-title,
[data-theme="dark-blue"] #testimonials .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #approach .section-copy,
[data-theme="dark-blue"] #stats .section-copy,
[data-theme="dark-blue"] #technologies .section-copy,
[data-theme="dark-blue"] #clients .section-copy,
[data-theme="dark-blue"] #testimonials .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark-blue"] #services .service-hover-link {
    color: #7dd3f8;
}

[data-theme="dark-blue"] #services .service-hover-link:hover,
[data-theme="dark-blue"] #services .service-hover-link:focus {
    color: #ffffff;
}

[data-theme="dark-blue"] #approach .section-glass,
[data-theme="dark-blue"] #technologies .tech-stack-board,
[data-theme="dark-blue"] #clients .client-tile,
[data-theme="dark-blue"] #testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

[data-theme="dark-blue"] #technologies .tech-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #clients .text-muted,
[data-theme="dark-blue"] #testimonials .testimonial-quote,
[data-theme="dark-blue"] #testimonials .testimonial-meta {
    color: rgba(255, 255, 255, 0.68) !important;
}

[data-theme="dark-blue"] #testimonials .testimonial-name {
    color: #ffffff;
}

[data-theme="dark-blue"] #testimonials .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark-blue"] #technologies .tech-stack-board {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
    padding: 2.5rem;
}

#technologies .tech-stack-board {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
    padding: 2.5rem;
}

#technologies .tech-item {
    flex-direction: column;
    gap: 0.65rem;
    min-height: 95px;
    min-width: unset;
    padding: 1rem 0.75rem;
    border-radius: 16px;
}

#technologies .tech-logo-img {
    max-height: 44px !important;
    max-width: 80px;
    width: auto;
    object-fit: contain;
}

#clients .client-grid {
    gap: 1.25rem;
}

#clients .client-tile {
    min-height: 130px;
    border-radius: 20px;
}

#clients .client-brand-img {
    max-height: 70px;
    max-width: 140px;
}

.contact-visual {
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 72px rgba(0, 61, 122, 0.28);
}

.contact-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 84%);
    opacity: 0.22;
    pointer-events: none;
}

.contact-visual-overlay {
    padding: 3rem;
    background: linear-gradient(to top, rgba(6, 16, 32, 0.94) 8%, rgba(6, 16, 32, 0.22) 62%, transparent 100%);
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #ffffff;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(18, 155, 219, 0.14);
    border: 1px solid rgba(18, 155, 219, 0.28);
    color: #129BDB;
    box-shadow: 0 10px 24px rgba(3, 18, 36, 0.18);
}

.contact-info-content {
    display: inline-block;
    line-height: 1.7;
    unicode-bidi: isolate;
}

.contact-info-content--ltr {
    direction: ltr;
    unicode-bidi: plaintext;
    text-align: left;
}

.contact-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    padding-right: 2.9rem;
    border-radius: 16px;
    border: 1px solid rgba(18, 155, 219, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(12, 35, 64, 0.08);
    color: #0c2340;
    position: relative;
}

.contact-form-alert .btn-close {
    position: absolute;
    top: 50%;
    right: 0.9rem;
    transform: translateY(-50%);
    margin: 0;
    padding: 0.25rem;
    opacity: 0.7;
}

.contact-form-alert__icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.contact-form-alert__text {
    flex: 1 1 auto;
    line-height: 1.65;
    font-weight: 500;
}

.contact-form-alert--success {
    border-color: rgba(16, 185, 129, 0.18);
    background: linear-gradient(180deg, rgba(240, 253, 247, 0.96), rgba(230, 250, 241, 0.96));
    color: #0f5132;
}

.contact-form-alert--success .contact-form-alert__icon {
    background: rgba(16, 185, 129, 0.14);
    color: #10b981;
}

.contact-form-alert--error,
.contact-form-alert--warning {
    border-color: rgba(239, 68, 68, 0.16);
    background: linear-gradient(180deg, rgba(254, 242, 242, 0.96), rgba(254, 235, 235, 0.96));
    color: #991b1b;
}

.contact-form-alert--error .contact-form-alert__icon,
.contact-form-alert--warning .contact-form-alert__icon {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

[dir="ltr"] .contact-visual-overlay {
    text-align: left;
}

[dir="ltr"] .contact-info-row {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
}

[dir="rtl"] .contact-visual-overlay {
    text-align: right;
}

[dir="rtl"] .contact-visual-overlay .mt-4.d-flex.flex-column.gap-3 {
    width: 100%;
    align-items: flex-end;
}

[dir="rtl"] .contact-info-content {
    text-align: right;
}

.contact-visual-overlay .section-kicker {
    margin-bottom: 0.85rem;
    padding: 0.2rem 0.56rem;
    font-size: 0.78rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    letter-spacing: 0.08em;
}

.captcha-box {
    align-items: flex-start;
}

.captcha-box img {
    border-radius: 8px;
    max-width: 100%;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.captcha-box input[type="text"] {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    color: #0c2340 !important;
    width: 100%;
    min-height: 50px;
    font-size: 0.92rem;
}

.site-navbar {
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(18, 155, 219, 0.1) !important;
}

.site-navbar .btn-outline-primary {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(12, 35, 64, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 1100;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    box-shadow: 0 22px 40px rgba(12, 35, 64, 0.28);
    transform: translateY(-2px);
}

.wa-btn {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1050;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-btn:hover,
.wa-btn:focus {
    transform: scale(1.12);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.wa-btn__icon {
    font-size: 1.45rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.wa-btn__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    animation: waPulse 2.5s ease-out infinite;
}

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

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

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

.wa-btn__tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    background: #0c2340;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.wa-btn__tooltip::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #0c2340;
}

.wa-btn:hover .wa-btn__tooltip,
.wa-btn:focus .wa-btn__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

[data-theme="light-blue"] .site-footer {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.14), transparent 30%),
    linear-gradient(180deg, #f3fbff 0%, #dceeff 100%);
    color: #0c2340;
}

#stats,
#technologies,
#clients,
#testimonials {
    border-top: 1px solid rgba(18, 155, 219, 0.08);
}

#services,
#projects,
#news {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 767px) {
    #technologies .tech-stack-board {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.25rem;
        gap: 0.85rem;
    }

    .contact-visual {
        min-height: 280px;
    }

    .contact-visual-overlay {
        padding: 1.5rem;
    }

    #approach,
    #stats,
    #services,
    #technologies,
    #projects,
    #clients,
    #testimonials,
    #news,
    .contact-section {
        padding: 4rem 0;
    }

    .wa-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        overflow: hidden;
        line-height: 1;
    }

    .wa-btn__icon {
        font-size: 1.5rem;
        line-height: 1;
        display: block;
    }

    .wa-btn__tooltip {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-navbar .container {
        gap: 0.5rem;
        align-items: center;
    }

    .site-navbar .d-flex.align-items-center.gap-3 {
        gap: 0.5rem !important;
        flex-wrap: nowrap;
        justify-content: flex-end;
        min-width: 0;
    }

    .site-navbar .btn {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        white-space: nowrap;
    }

    .site-navbar .navbar-brand {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .hero-orb-one {
        width: 180px;
        height: 180px;
        top: 6%;
        left: 4%;
        opacity: 0.42;
    }

    .hero-orb-two {
        width: 220px;
        height: 220px;
        right: -24px;
        bottom: 8%;
        opacity: 0.36;
    }

    .hero-cinematic__badge {
        margin-bottom: 1.5rem;
        padding: 0.42rem 0.9rem;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .hero-cinematic__title {
        font-size: clamp(2.1rem, 10vw, 3rem);
        margin-bottom: 1.25rem;
    }

    .hero-cinematic__line {
        margin-bottom: 2rem;
    }

    .hero-cinematic__scroll {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .svc-item {
        grid-template-columns: 52px 1fr 40px;
        gap: 0.9rem;
        padding: 1.15rem 0.85rem;
    }

    .svc-item__num,
    .svc-item__desc {
        display: none;
    }

    .pf-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    #technologies .tech-stack-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-visual {
        min-height: 380px;
    }

    .contact-visual-overlay {
        justify-content: center;
        align-items: flex-start;
        padding: 1.25rem 1.25rem 1.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
    }

    .contact-title {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .contact-copy {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .contact-info-row {
        gap: 0.65rem !important;
    }

}

@media (max-width: 480px) {
    #technologies .tech-stack-board {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dojoon-about {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: #ffffff;
}

.dojoon-about__inner {
    z-index: 2;
}

.dojoon-about__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(0, 105, 179, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(18, 155, 219, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f0f8ff 100%);
}

.dojoon-about__noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.dojoon-about__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: aboutOrbFloat 16s ease-in-out infinite;
}

.dojoon-about__orb--one {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -80px;
    background: rgba(0, 105, 179, 0.08);
}

.dojoon-about__orb--two {
    width: 300px;
    height: 300px;
    bottom: -60px;
    right: -60px;
    background: rgba(18, 155, 219, 0.07);
    animation-delay: 4s;
}

.dojoon-about__orb--three {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 50%;
    background: rgba(0, 86, 179, 0.05);
    animation-delay: 8s;
}

@keyframes aboutOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -25px) scale(1.06);
    }
}

.dojoon-marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(0, 105, 179, 0.1);
    border-bottom: 1px solid rgba(0, 105, 179, 0.1);
    padding: 0.85rem 0;
    margin-bottom: 5rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.dojoon-marquee {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(12, 35, 64, 0.35);
}

[dir="rtl"] .dojoon-marquee {
    direction: ltr;
}

.dojoon-marquee__dot {
    color: #0069B3;
    opacity: 0.5;
}

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

.dojoon-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.dojoon-about__kicker {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 105, 179, 0.7);
}

.dojoon-about__kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0069B3;
    animation: kickerPulse 2s ease-in-out infinite;
}

@keyframes kickerPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.dojoon-about__ar {
    font-size: 1.05rem;
    color: rgba(12, 35, 64, 0.5);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.dojoon-about__divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0069B3, #129BDB, transparent);
    margin-bottom: 2.5rem;
    transition: width 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.dojoon-about__facts {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.dojoon-about__fact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dojoon-about__fact-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #0069B3;
    letter-spacing: -0.04em;
}

.dojoon-about__fact-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(12, 35, 64, 0.55);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dojoon-about__fact-sep {
    width: 1px;
    height: 50px;
    background: rgba(0, 105, 179, 0.15);
    flex-shrink: 0;
}

.dojoon-about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(0, 105, 179, 0.05);
    border: 1px solid rgba(0, 105, 179, 0.1);
}

.dojoon-about__highlight-icon {
    color: #0069B3;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dojoon-about__highlight p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(12, 35, 64, 0.7);
}

.dojoon-about__story-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 105, 179, 0.1);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 105, 179, 0.04),
    0 20px 60px rgba(0, 105, 179, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.dojoon-about__story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0069B3, #129BDB, transparent);
    border-radius: 999px;
}

.dojoon-about__story-block {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(0, 105, 179, 0.08);
}

.dojoon-about__story-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dojoon-about__lang-tag {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    background: rgba(0, 105, 179, 0.08);
    color: #0069B3;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.dojoon-about__story-text {
    font-size: 0.96rem;
    line-height: 1.9;
    color: rgba(12, 35, 64, 0.72);
}

.dojoon-about__story-text p {
    margin-bottom: 0.85rem;
}

.dojoon-about__story-text p:last-child {
    margin-bottom: 0;
}

.dojoon-about__value-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.07), rgba(18, 155, 219, 0.04));
    border: 1px solid rgba(0, 105, 179, 0.12);
}

.dojoon-about__value-box i {
    color: #0069B3;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dojoon-about__value-box p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.8;
    color: rgba(12, 35, 64, 0.72);
    font-style: italic;
}

.dojoon-about__cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dojoon-about__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background: #0069B3;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dojoon-about__cta-btn:hover {
    background: #005b99;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 105, 179, 0.3);
}

.dojoon-about__cta-arrow {
    transition: transform 0.3s ease;
}

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

.dojoon-about__cta-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(12, 35, 64, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.dojoon-about__cta-link:hover {
    color: #0069B3;
}

.dojoon-about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
    margin-bottom: 0;
    justify-content: center;
}

.dojoon-about__tag {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 105, 179, 0.15);
    background: rgba(0, 105, 179, 0.04);
    color: rgba(12, 35, 64, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    cursor: default;
}

.dojoon-about__tag:hover {
    border-color: #0069B3;
    background: rgba(0, 105, 179, 0.08);
    color: #0069B3;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .dojoon-about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dojoon-about__headline-line {
        font-size: clamp(2rem, 7vw, 3rem);
    }
}

@media (max-width: 576px) {
    .dojoon-about {
        padding: 4rem 0 3rem;
    }

    .dojoon-marquee-wrap {
        margin-bottom: 3rem;
    }

    .dojoon-marquee {
        gap: 1.5rem;
        font-size: 0.64rem;
        letter-spacing: 0.14em;
    }

    .dojoon-about__story-card {
        padding: 1.75rem 1.25rem;
    }

    .dojoon-about__facts {
        gap: 0.75rem;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .dojoon-about__fact {
        flex: 1 1 0;
        min-width: 0;
        align-items: center;
        text-align: center;
    }

    .dojoon-about__fact-sep {
        display: none;
    }

    .dojoon-about__fact-num {
        font-size: clamp(1.45rem, 7vw, 1.8rem);
    }

    .dojoon-about__fact-label {
        font-size: 0.64rem;
        letter-spacing: 0.04em;
        line-height: 1.35;
    }

    .dojoon-about__tags {
        gap: 0.5rem;
    }
}

[data-theme="dark-blue"] .dojoon-about {
    background: linear-gradient(180deg, #081428 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .dojoon-about__bg {
    background: radial-gradient(ellipse at 10% 50%, rgba(18, 155, 219, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(0, 105, 179, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #081428 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .dojoon-about__headline-line {
    color: #ffffff;
}

[data-theme="dark-blue"] .dojoon-about__headline-line--accent {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__headline-line--outline {
    -webkit-text-stroke-color: #129BDB;
    color: rgba(18, 155, 219, 0.14);
    text-shadow: 0 0 0 #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__ar {
    color: rgba(255, 255, 255, 0.38);
}

[data-theme="dark-blue"] .dojoon-about__kicker {
    color: rgba(18, 155, 219, 0.8);
}

[data-theme="dark-blue"] .dojoon-about__kicker-dot {
    background: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__fact-num {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__fact-label {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark-blue"] .dojoon-about__fact-sep {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark-blue"] .dojoon-about__highlight {
    background: rgba(18, 155, 219, 0.08);
    border-color: rgba(18, 155, 219, 0.15);
}

[data-theme="dark-blue"] .dojoon-about__highlight p {
    color: rgba(255, 255, 255, 0.62);
}

[data-theme="dark-blue"] .dojoon-about__highlight-icon {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__story-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark-blue"] .dojoon-about__story-text {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] .dojoon-about__lang-tag {
    background: rgba(18, 155, 219, 0.12);
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__story-block {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .dojoon-about__value-box {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.1), rgba(0, 105, 179, 0.06));
    border-color: rgba(18, 155, 219, 0.15);
}

[data-theme="dark-blue"] .dojoon-about__value-box i {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__value-box p {
    color: rgba(255, 255, 255, 0.58);
}

[data-theme="dark-blue"] .dojoon-about__cta-link {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark-blue"] .dojoon-about__cta-link:hover {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__tag {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.42);
}

[data-theme="dark-blue"] .dojoon-about__tag:hover {
    border-color: #129BDB;
    background: rgba(18, 155, 219, 0.1);
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-marquee-wrap {
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .dojoon-marquee {
    color: rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════════════════════
   Added: home hero mini-stats + achievement strip + tech labels
═══════════════════════════════════════════════════════════ */

/* ── Hero mini-stats (inside glass card) ──────────────────── */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.hero-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-mini-stat__num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-mini-stat__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-mini-stat__sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

[data-theme="light-blue"] .hero-mini-stats {
    border-top-color: rgba(12, 35, 64, 0.1);
}

[data-theme="light-blue"] .hero-mini-stat__num {
    color: #0c2340;
}

[data-theme="light-blue"] .hero-mini-stat__label {
    color: rgba(12, 35, 64, 0.5);
}

[data-theme="light-blue"] .hero-mini-stat__sep {
    background: rgba(12, 35, 64, 0.1);
}

@media (max-width: 576px) {
    .hero-mini-stats {
        gap: 1.25rem;
    }

    .hero-mini-stat__sep {
        display: none;
    }
}

.dojoon-achievement-strip {
    position: relative;
    margin-top: 0;

    padding: 0;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 50%, #0069b3 100%);
    overflow: hidden;
}

.dojoon-achievement-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.dojoon-achievement-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.dojoon-achievement-strip__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2.5rem 3rem;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    transition: background 0.3s ease;
}

.dojoon-achievement-strip__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dojoon-achievement-strip__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #129bdb;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dojoon-achievement-strip__item:hover .dojoon-achievement-strip__icon {
    transform: scale(1.1);
    background: rgba(18, 155, 219, 0.15);
}

.dojoon-achievement-strip__num {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.dojoon-achievement-strip__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
}

.dojoon-achievement-strip__sep {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

[data-theme="light-blue"] .dojoon-achievement-strip {
    background: linear-gradient(135deg, #e6f4ff 0%, #cce8ff 50%, #b3daff 100%);
}

[data-theme="light-blue"] .dojoon-achievement-strip::before {
    background-image: linear-gradient(rgba(0, 105, 179, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 179, 0.06) 1px, transparent 1px);
}

[data-theme="light-blue"] .dojoon-achievement-strip__icon {
    background: rgba(0, 105, 179, 0.08);
    border-color: rgba(0, 105, 179, 0.14);
    color: #0069b3;
}

[data-theme="light-blue"] .dojoon-achievement-strip__num {
    color: #0c2340;
}

[data-theme="light-blue"] .dojoon-achievement-strip__label {
    color: rgba(12, 35, 64, 0.55);
}

[data-theme="light-blue"] .dojoon-achievement-strip__sep {
    background: rgba(0, 105, 179, 0.1);
}

[data-theme="light-blue"] .dojoon-achievement-strip__item:hover {
    background: rgba(0, 105, 179, 0.05);
}

@media (max-width: 767px) {
    .dojoon-achievement-strip__inner {
        flex-direction: column;
        gap: 0;
    }

    .dojoon-achievement-strip__item {
        width: 100%;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        justify-content: flex-start;
    }

    [data-theme="light-blue"] .dojoon-achievement-strip__item {
        border-bottom-color: rgba(0, 105, 179, 0.08);
    }

    .dojoon-achievement-strip__sep {
        display: none;
    }
}

#technologies .tech-item span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(12, 35, 64, 0.6);
    text-align: center;
    display: block;
}

[data-theme="dark-blue"] #technologies .tech-item span {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   High Impact Features
═══════════════════════════════════════════════════════════ */

/* ── 1. SCROLL PROGRESS BAR ──────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0069b3, #129bdb, #0069b3);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

[data-theme="light-blue"] .scroll-progress {
    background: linear-gradient(90deg, #1f7ecf, #67c8ed, #1f7ecf);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
}

/* ── 2. ACTIVE NAV LINK ──────────────────────────────────── */
.site-navbar .nav-link {
    position: relative;
    padding-bottom: 0.35rem !important;
    color: rgba(12, 35, 64, 0.7) !important;
    font-weight: 500;
    transition: color 0.25s ease;
}

.site-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

[data-theme="dark-blue"] .site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark-blue"] .site-navbar .nav-link.active,
[data-theme="dark-blue"] .site-navbar .nav-link:hover {
    color: #ffffff !important;
}

[data-theme="dark-blue"] .site-navbar .nav-link::after {
    background: #129bdb;
}

[data-theme="light-blue"] .site-navbar .nav-link {
    color: rgba(12, 35, 64, 0.7) !important;
}

[data-theme="light-blue"] .site-navbar .nav-link.active,
[data-theme="light-blue"] .site-navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ── 3. TYPING CURSOR ────────────────────────────────────── */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 2px;
    animation: cursorBlink 0.8s ease-in-out infinite;
}

@keyframes cursorBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

[data-theme="light-blue"] .typing-cursor {
    background: rgba(12, 35, 64, 0.7);
}

/* ═══════════════════════════════════════════════════════
   Why Dojoon Section
═══════════════════════════════════════════════════════ */
.wd-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

.wd-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(0, 105, 179, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 20%, rgba(18, 155, 219, 0.15) 0%, transparent 45%);
}

.wd-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

.wd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: wdOrbFloat 18s ease-in-out infinite;
}

.wd-orb--one {
    width: 450px;
    height: 450px;
    top: -100px;
    left: -100px;
    background: rgba(0, 105, 179, 0.15);
}

.wd-orb--two {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -60px;
    background: rgba(18, 155, 219, 0.12);
    animation-delay: 5s;
}

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

    50% {
        transform: translate(25px, -30px) scale(1.07);
    }
}

.wd-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.wd-kicker {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wd-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.wd-title--accent {
    color: #129bdb;
}

.wd-title--outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.wd-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.wd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.wd-card {
    position: relative;
    padding: 2.25rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    overflow: hidden;
}

.wd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 155, 219, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wd-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(18, 155, 219, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(18, 155, 219, 0.1);
}

.wd-card:hover::before {
    opacity: 1;
}

.wd-card--featured {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.18), rgba(18, 155, 219, 0.08));
    border-color: rgba(18, 155, 219, 0.2);
}

.wd-card--featured:hover {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.25), rgba(18, 155, 219, 0.12));
    border-color: rgba(18, 155, 219, 0.35);
}

.wd-card__number {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    transition: color 0.35s ease;
}

.wd-card:hover .wd-card__number {
    color: rgba(18, 155, 219, 0.08);
}

.wd-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.15), rgba(0, 105, 179, 0.08));
    border: 1px solid rgba(18, 155, 219, 0.15);
    color: #129bdb;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.35s ease, background 0.35s ease;
}

.wd-card:hover .wd-card__icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.22), rgba(0, 105, 179, 0.12));
}

.wd-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.wd-card__ar {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
    font-style: italic;
}

.wd-card__body {
    font-size: 0.93rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1.25rem;
}

.wd-card__tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
}

.wd-card:hover .wd-card__tag {
    background: rgba(18, 155, 219, 0.1);
    border-color: rgba(18, 155, 219, 0.2);
    color: #129bdb;
}

[data-theme="light-blue"] .wd-section {
    background: linear-gradient(135deg, #e8f5ff 0%, #d4ecff 55%, #c0e3ff 100%);
}

[data-theme="light-blue"] .wd-bg {
    background: radial-gradient(ellipse at 0% 50%, rgba(0, 105, 179, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 20%, rgba(18, 155, 219, 0.08) 0%, transparent 45%);
}

[data-theme="light-blue"] .wd-grid-overlay {
    background-image: linear-gradient(rgba(0, 105, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 179, 0.04) 1px, transparent 1px);
}

[data-theme="light-blue"] .wd-kicker {
    color: rgba(0, 86, 179, 0.85);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 105, 179, 0.14);
}

[data-theme="light-blue"] .wd-title {
    color: #0c2340;
}

[data-theme="light-blue"] .wd-title--accent {
    color: #0069b3;
}

[data-theme="light-blue"] .wd-title--outline {
    -webkit-text-stroke-color: rgba(0, 105, 179, 0.3);
}

[data-theme="light-blue"] .wd-subtitle {
    color: rgba(12, 35, 64, 0.65);
}

[data-theme="light-blue"] .wd-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 105, 179, 0.1);
    box-shadow: 0 8px 30px rgba(0, 105, 179, 0.06);
}

[data-theme="light-blue"] .wd-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 105, 179, 0.2);
    box-shadow: 0 20px 50px rgba(0, 105, 179, 0.12);
}

[data-theme="light-blue"] .wd-card--featured {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.1), rgba(18, 155, 219, 0.05));
}

[data-theme="light-blue"] .wd-card__number {
    color: rgba(0, 105, 179, 0.06);
}

[data-theme="light-blue"] .wd-card__icon-wrap {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.1), rgba(18, 155, 219, 0.05));
    border-color: rgba(0, 105, 179, 0.12);
    color: #0069b3;
}

[data-theme="light-blue"] .wd-card__title {
    color: #0c2340;
}

[data-theme="light-blue"] .wd-card__ar {
    color: rgba(12, 35, 64, 0.35);
}

[data-theme="light-blue"] .wd-card__body {
    color: rgba(12, 35, 64, 0.65);
}

[data-theme="light-blue"] .wd-card__tag {
    background: rgba(0, 105, 179, 0.05);
    border-color: rgba(0, 105, 179, 0.1);
    color: rgba(12, 35, 64, 0.5);
}

[data-theme="light-blue"] .wd-card:hover .wd-card__tag {
    background: rgba(0, 105, 179, 0.1);
    border-color: rgba(0, 105, 179, 0.2);
    color: #0069b3;
}

[data-theme="light-blue"] .wd-card--cta {
    background: linear-gradient(135deg, #0069b3 0%, #005b99 100%);
}

[data-theme="light-blue"] .wd-card--cta:hover {
    background: linear-gradient(135deg, #0077cc 0%, #0069b3 50%, #004d85 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
    .wd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wd-section {
        padding: 4rem 0;
    }

    .wd-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wd-card {
        padding: 1.75rem 1.5rem;
    }

    .wd-card--cta {
        min-height: unset;
    }
}

/* Requested visual overrides */
#services .service-card-light {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#services .service-title {
    color: #ffffff !important;
}

#services .service-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Cinematic hero */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cinematic {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cinematic__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: min(100%, 760px);
    opacity: 0;
    transform: translateY(-20px);
    animation: badgeSlideIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
}

.hero-cinematic__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #129bdb;
    animation: badgePulse 2s ease-in-out infinite;
}

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

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

@keyframes badgeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cinematic__title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

@keyframes titleFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-theme="light-blue"] .hero-cinematic__title {
    color: #f3eeee;
}

.hero-cinematic__subtitle {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-cinematic__line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0069b3, #129bdb, transparent);
    border-radius: 999px;
    margin: 0 auto 3rem;
    animation: lineExpand 1s cubic-bezier(0.19, 1, 0.22, 1) 1.6s forwards;
}

@keyframes lineExpand {
    to {
        width: min(500px, 60%);
    }
}

.hero-cinematic__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s forwards;
    text-decoration: none;
    cursor: pointer;
}

.hero-cinematic__scroll-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

    50% {
        transform: translateY(3px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-theme="light-blue"] .hero-cinematic__scroll {
    color: #ffffff;
}

[data-theme="light-blue"] .hero-cinematic__scroll-icon {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

@media (max-width: 767px) {
    .hero-cinematic__title {
        font-size: clamp(2.2rem, 9vw, 4rem);
        letter-spacing: -0.03em;
    }
}

/* Services redesigned */
.svc-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.svc-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(0, 105, 179, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(18, 155, 219, 0.06) 0%, transparent 50%);
}

.svc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: svcFloat 14s ease-in-out infinite;
}

.svc-orb--one {
    width: 350px;
    height: 350px;
    top: -80px;
    left: -80px;
    background: rgba(0, 105, 179, 0.07);
}

.svc-orb--two {
    width: 280px;
    height: 280px;
    bottom: -60px;
    right: -60px;
    background: rgba(18, 155, 219, 0.06);
    animation-delay: 5s;
}

@keyframes svcFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -20px);
    }
}

.svc-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.07);
    border: 1px solid rgba(0, 105, 179, 0.12);
    color: #0069b3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.svc-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0c2340;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.05;
}

.svc-title--accent {
    color: #0069b3;
}

.svc-subtitle {
    color: rgba(12, 35, 64, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.svc-cta-link {
    display: inline-flex;
    align-items: center;
    color: #0069b3;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 105, 179, 0.2);
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.svc-cta-link:hover {
    color: #005b99;
    border-bottom-color: #0069b3;
}

.svc-cta-link i {
    transition: transform 0.25s ease;
}

.svc-cta-link:hover i {
    transform: translate(3px, -3px);
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-item {
    display: grid;
    grid-template-columns: 60px 70px 1fr 50px;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem;
    border-bottom: 1px solid rgba(0, 105, 179, 0.08);
    border-radius: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), all 0.3s ease;
    cursor: default;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
}

.svc-item.svc-item--visible {
    opacity: 1;
    transform: translateX(0);
}

.svc-item:nth-child(1) {
    transition-delay: 0s;
}

.svc-item:nth-child(2) {
    transition-delay: 0.1s;
}

.svc-item:nth-child(3) {
    transition-delay: 0.2s;
}

.svc-item:nth-child(4) {
    transition-delay: 0.3s;
}

.svc-item:nth-child(5) {
    transition-delay: 0.4s;
}

.svc-item:nth-child(6) {
    transition-delay: 0.5s;
}

.svc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(0, 105, 179, 0.04);
    border-radius: 0 16px 16px 0;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.svc-item:hover::before {
    width: 100%;
}

.svc-item:first-child {
    border-top: 1px solid rgba(0, 105, 179, 0.08);
}

.svc-item:hover {
    background: transparent;
}

.svc-item__num {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(0, 105, 179, 0.3);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.svc-item:hover .svc-item__num {
    color: #0069b3;
}

.svc-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.08), rgba(18, 155, 219, 0.04));
    border: 1px solid rgba(0, 105, 179, 0.1);
    color: #0069b3;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-item:hover .svc-item__icon {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.15), rgba(18, 155, 219, 0.08));
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(0, 105, 179, 0.15);
}

.svc-item__content {
    position: relative;
    z-index: 1;
}

.svc-item__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.svc-item:hover .svc-item__title {
    color: #0069b3;
}

.svc-item__desc {
    color: rgba(12, 35, 64, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.svc-item__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 105, 179, 0.06);
    border: 1px solid rgba(0, 105, 179, 0.1);
    color: rgba(0, 105, 179, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-item:hover .svc-item__arrow {
    background: #0069b3;
    border-color: #0069b3;
    color: #ffffff;
    transform: rotate(45deg);
}

[data-theme="dark-blue"] .svc-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .svc-bg {
    background: radial-gradient(ellipse at 0% 0%, rgba(18, 155, 219, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 105, 179, 0.07) 0%, transparent 50%);
}

[data-theme="dark-blue"] .svc-kicker {
    background: rgba(18, 155, 219, 0.1);
    border-color: rgba(18, 155, 219, 0.18);
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-title {
    color: #ffffff;
}

[data-theme="dark-blue"] .svc-title--accent {
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark-blue"] .svc-cta-link {
    color: #129bdb;
    border-bottom-color: rgba(18, 155, 219, 0.3);
}

[data-theme="dark-blue"] .svc-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .svc-item:first-child {
    border-top-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .svc-item::before {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark-blue"] .svc-item__num {
    color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark-blue"] .svc-item:hover .svc-item__num {
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-item__icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-item__title {
    color: #ffffff;
}

[data-theme="dark-blue"] .svc-item:hover .svc-item__title {
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-item__desc {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark-blue"] .svc-item__arrow {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark-blue"] .svc-item:hover .svc-item__arrow {
    background: #129bdb;
    border-color: #129bdb;
    color: #ffffff;
}

@media (max-width: 767px) {
    .svc-item {
        grid-template-columns: 40px 52px 1fr 40px;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .svc-item__num {
        display: none;
    }

    .svc-item {
        grid-template-columns: 52px 1fr 40px;
    }
}

/* Portfolio redesigned */
.pf-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

.pf-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 105, 179, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(18, 155, 219, 0.12) 0%, transparent 45%);
}

.pf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: pfFloat 16s ease-in-out infinite;
}

.pf-orb--one {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: rgba(0, 105, 179, 0.15);
}

.pf-orb--two {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -60px;
    background: rgba(18, 155, 219, 0.1);
    animation-delay: 6s;
}

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

    50% {
        transform: translate(-20px, 25px) scale(1.05);
    }
}

.pf-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pf-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pf-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0a0b17;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.pf-title--accent {
    color: #129bdb;
}

.pf-filters {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pf-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.pf-filter:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.pf-filter.active {
    background: #0069b3;
    border-color: #0069b3;
    color: #ffffff;
}

[data-theme="light-blue"] .pf-filter {
    border-color: rgba(17, 34, 79, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(17, 34, 79, 0.78);
}

[data-theme="light-blue"] .pf-filter:hover {
    background: rgba(17, 34, 79, 0.08);
    color: #11224f;
    border-color: rgba(17, 34, 79, 0.24);
}

[data-theme="light-blue"] .pf-filter.active {
    background: #0069b3;
    border-color: #0069b3;
    color: #ffffff;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pf-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(18, 155, 219, 0.3);
}

.pf-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pf-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-card__img {
    transform: scale(1.06);
}

.pf-card__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.15), rgba(18, 155, 219, 0.08));
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease;
}

.pf-card:hover .pf-card__fallback {
    color: rgba(18, 155, 219, 0.5);
}

.pf-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 30, 60, 0.9) 0%, rgba(0, 30, 60, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pf-card:hover .pf-card__overlay {
    opacity: 1;
}

.pf-card__view-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transform: translateY(10px);
    transition: transform 0.35s ease, background 0.25s ease;
}

.pf-card:hover .pf-card__view-btn {
    transform: translateY(0);
}

.pf-card__view-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.pf-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.85);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.pf-card__body {
    padding: 1.5rem;
}

.pf-card__body-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pf-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.pf-card__desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

.pf-card__link-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 105, 179, 0.06);
    border: 1px solid rgba(0, 105, 179, 0.1);
    color: #0069b3;
    font-size: 0.78rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.pf-card__link-icon:hover {
    background: #0069b3;
    color: #ffffff;
    border-color: #0069b3;
    transform: rotate(45deg);
}

[data-theme="dark-blue"] .pf-card__link-icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark-blue"] .pf-card__link-icon:hover {
    background: #129bdb;
    color: #ffffff;
    border-color: #129bdb;
}

[data-theme="light-blue"] .pf-section {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

[data-theme="light-blue"] .pf-card__title,
[data-theme="light-blue"] #projects .pf-card__title {
    color: #11224f !important;
    text-shadow: none;
}

[data-theme="light-blue"] .pf-card__desc,
[data-theme="light-blue"] #projects .pf-card__desc {
    color: rgba(17, 34, 79, 0.82) !important;
}

[data-theme="dark-blue"] .pf-card__title,
[data-theme="dark-blue"] #projects .pf-card__title {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

[data-theme="dark-blue"] .pf-card__desc,
[data-theme="dark-blue"] #projects .pf-card__desc {
    color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 991px) {
    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pf-grid {
        grid-template-columns: 1fr;
    }

    .pf-section {
        padding: 4rem 0;
    }

    .svc-section {
        padding: 4rem 0;
    }
}

/* Portfolio text contrast fix */

#projects .pf-card__title {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

#projects .pf-card__desc {
    color: rgba(255, 255, 255, 0.78) !important;
}

#projects .pf-card__badge {
    color: #ffffff !important;
}

/* Page loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #030712 0%, #0c2340 100%);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

[data-theme="light-blue"] .page-loader {
    background: linear-gradient(135deg, #eef7ff 0%, #d8ecff 55%, #c7e4ff 100%);
}

[data-theme="dark-blue"] .page-loader {
    background: linear-gradient(135deg, #030712 0%, #0c2340 100%);
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.page-loader__logo {
    opacity: 0;
    transform: translateY(20px);
    animation: loaderLogoIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes loaderLogoIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-loader__logo-img {
    height: 52px;
    width: auto;
}

.page-loader__logo-img--light {
    display: block;
}

.page-loader__logo-img--dark {
    display: none;
}

[data-theme="light-blue"] .page-loader__logo-img--dark {
    display: block;
}

[data-theme="light-blue"] .page-loader__logo-img--light {
    display: none;
}

[data-theme="dark-blue"] .page-loader__logo-img--dark {
    display: none;
}

[data-theme="dark-blue"] .page-loader__logo-img--light {
    display: block;
}

.page-loader__bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

[data-theme="light-blue"] .page-loader__bar {
    background: rgba(12, 35, 64, 0.12);
}

.page-loader__bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0069b3, #129bdb);
    border-radius: 999px;
    animation: loaderBar 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes loaderBar {
    0% {
        width: 0;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.page-loader__tagline {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: loaderLogoIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

[data-theme="light-blue"] .page-loader__tagline {
    color: rgba(12, 35, 64, 0.45);
}

body.is-loading {
    overflow: hidden;
}

/* Dark mode review */
[data-theme="dark-blue"] .svc-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .dojoon-about__hero-subtitle {
    color: #ffffff;
}

[data-theme="dark-blue"] .dojoon-about__hero-desc {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] .dojoon-about__hero-actions .btn-outline-primary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark-blue"] .dojoon-achievement-strip {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 50%, #0069b3 100%);
}

[data-theme="dark-blue"] #why-dojoon {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%) !important;
}

[data-theme="dark-blue"] #clients {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #clients .client-tile {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #clients .client-brand-img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

[data-theme="dark-blue"] #clients .client-tile:hover .client-brand-img {
    filter: grayscale(0%);
    opacity: 1;
}

[data-theme="dark-blue"] #clients .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #clients .section-copy {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] #testimonials {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #testimonials .testimonial-quote {
    color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark-blue"] #testimonials .testimonial-name {
    color: #ffffff;
}

[data-theme="dark-blue"] #testimonials .testimonial-meta {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark-blue"] #testimonials .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark-blue"] #testimonials .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #testimonials .section-copy {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] #news {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #news .news-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #news .news-card-title {
    color: #ffffff !important;
}

[data-theme="dark-blue"] #news .news-card-summary {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="dark-blue"] .contact-section {
    background: linear-gradient(180deg, #061020 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .contact-form-card {
    background: linear-gradient(180deg, rgba(0, 91, 153, 0.82) 0%, rgba(12, 35, 64, 0.82) 100%);
}

[data-theme="dark-blue"] .site-footer {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.18), transparent 30%),
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #f8fafc;
}

[data-theme="dark-blue"] .footer-description,
[data-theme="dark-blue"] .footer-links a,
[data-theme="dark-blue"] .footer-contact li,
[data-theme="dark-blue"] .footer-bottom p {
    color: rgba(248, 250, 252, 0.65);
}

[data-theme="dark-blue"] .footer-title,
[data-theme="dark-blue"] .footer-heading {
    color: #ffffff;
}

[data-theme="dark-blue"] .back-to-top {
    background: linear-gradient(135deg, #0069b3, #129bdb);
}

/* Consistent section spacing */
#about-intro,
#stats,
#services,
#why-dojoon,
#projects,
#technologies,
#clients,
#testimonials,
#news,
.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Mobile review */
@media (max-width: 991px) {
    .contact-visual {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    #hero {
        min-height: 100svh;
    }

    .hero-cinematic__title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -0.03em;
        padding: 0 1rem;
    }

    .hero-cinematic__badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
        letter-spacing: 0.15em;
    }

    #about-intro,
    #stats,
    #services,
    #why-dojoon,
    #projects,
    #technologies,
    #clients,
    #testimonials,
    #news,
    .contact-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .dojoon-about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dojoon-about {
        padding: 4rem 0 3rem;
    }

    .dojoon-marquee-wrap {
        margin-bottom: 2.5rem;
    }

    .dojoon-achievement-strip__inner {
        flex-direction: column;
    }

    .dojoon-achievement-strip__item {
        width: 100%;
        justify-content: flex-start;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dojoon-achievement-strip__sep {
        display: none;
    }

    .svc-item {
        grid-template-columns: 52px 1fr 40px;
        gap: 0.85rem;
        padding: 1.25rem 1rem;
    }

    .svc-item__num,
    .svc-item__desc {
        display: none;
    }

    .svc-section,
    .pf-section,
    .contact-section {
        padding: 4rem 0;
    }

    .pf-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pf-filters {
        gap: 0.4rem;
    }

    .pf-filter {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 576px) {
    .wd-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .wd-section {
        padding: 4rem 0;
    }

    .wd-title {
        font-size: 2.2rem;
    }

    .wd-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .wd-card__number {
        top: 1rem;
        right: 1rem;
        font-size: 2.6rem;
    }

    .wd-card__icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        margin-bottom: 1.1rem;
        font-size: 1.1rem;
    }

    .wd-card__title {
        font-size: 1.05rem;
    }

    .wd-card__ar {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .wd-card__body {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .wd-card__tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .wd-card--cta {
        min-height: unset;
        padding: 1.5rem 1.25rem;
    }

    .wd-card__cta-label {
        margin-bottom: 0.6rem;
    }

    .wd-card__cta-title {
        font-size: 1.1rem;
    }

    .wd-card__cta-ar {
        font-size: 0.78rem;
        margin-bottom: 1.1rem;
    }

    .wd-card__cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.82rem;
    }

    .clients-showcase .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .client-tile,
    .clients-showcase .client-tile {
        min-height: 120px;
        padding: 1rem;
        border-radius: 18px;
    }

    .client-brand-img,
    .clients-showcase .client-brand-img {
        max-height: 68px;
    }

    .tech-stack-board {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .tech-item {
        min-width: 0;
        min-height: 92px;
        padding: 0.9rem;
        border-radius: 18px;
    }

    .tech-logo-img {
        max-height: 52px;
    }

    .pf-card {
        border-radius: 18px;
    }

    .pf-card__media {
        height: 170px;
    }

    .pf-card__badge {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.62rem;
        padding: 0.25rem 0.6rem;
    }

    .pf-card__body {
        padding: 1.1rem 1rem;
    }

    .pf-card__title {
        font-size: 0.98rem;
    }

    .pf-card__desc {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .pf-card__link-icon {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .pf-card__view-btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.76rem;
    }

    .tm-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .tm-card__quote-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 1rem;
        border-radius: 10px;
        font-size: 0.78rem;
    }

    .tm-card__quote {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .tm-card__stars {
        margin-bottom: 1rem;
        font-size: 0.7rem;
    }

    .tm-card__author {
        gap: 0.7rem;
        padding-top: 1rem;
    }

    .tm-card__photo,
    .tm-card__avatar {
        width: 40px;
        height: 40px;
    }

    .tm-card__name {
        font-size: 0.82rem;
    }

    .tm-card__meta {
        font-size: 0.7rem;
    }
}

/* Clients section redesign */
.clients-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f9ff 0%, #eef5ff 100%);
}

.clients-section__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 105, 179, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(18, 155, 219, 0.05) 0%, transparent 50%);
}

.clients-section__header {
    text-align: center;
    margin-bottom: 2rem;
}

.clients-section__kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.07);
    border: 1px solid rgba(0, 105, 179, 0.12);
    color: #0069b3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.clients-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0c2340;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.clients-section__title--accent {
    color: #0069b3;
}

.clients-section__subtitle {
    color: rgba(12, 35, 64, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.clients-grid__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 105, 179, 0.08);
    box-shadow: 0 4px 20px rgba(0, 105, 179, 0.05);
    overflow: hidden;
    text-decoration: none;
    cursor: default;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

a.clients-grid__card {
    cursor: pointer;
}

.clients-grid__card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 105, 179, 0.14);
    border-color: rgba(0, 105, 179, 0.2);
    background: #ffffff;
}

.clients-grid__shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.clients-grid__card:hover .clients-grid__shine {
    left: 125%;
}

.clients-grid__logo {
    max-width: 130px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.8;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.clients-grid__card:hover .clients-grid__logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

.clients-grid__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0c2340;
    text-align: center;
}

[data-theme="dark-blue"] .clients-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .clients-section__bg {
    background: linear-gradient(rgba(7, 20, 37, 0.78), rgba(12, 35, 64, 0.82)),
    url("../images/tech.jpg") center/cover no-repeat,
    radial-gradient(ellipse at 20% 50%, rgba(18, 155, 219, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 105, 179, 0.12) 0%, transparent 50%);
}

[data-theme="dark-blue"] .clients-section__kicker {
    background: rgba(18, 155, 219, 0.1);
    border-color: rgba(18, 155, 219, 0.18);
    color: #129bdb;
}

[data-theme="dark-blue"] .clients-section__title {
    color: #ffffff;
}

[data-theme="dark-blue"] .clients-section__title--accent {
    color: #129bdb;
}

[data-theme="dark-blue"] .clients-section__subtitle {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark-blue"] .clients-grid__card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

[data-theme="dark-blue"] .clients-grid__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(18, 155, 219, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

[data-theme="dark-blue"] .clients-grid__shine {
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
}

[data-theme="dark-blue"] .clients-grid__logo {
    filter: none;
    opacity: 0.92;
}

[data-theme="dark-blue"] .clients-grid__card:hover .clients-grid__logo {
    filter: none;
    opacity: 1;
}

[data-theme="dark-blue"] .clients-grid__name {
    color: #ffffff;
}

@media (max-width: 767px) {
    .clients-section {
        padding: 4rem 0;
    }

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

    .clients-grid__card {
        height: 100px;
    }
}

@media (max-width: 400px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1199px) {
    .client-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    #clients .client-tile {
        animation: none;
    }
}

[data-theme="dark-blue"] #clients.landing-band-light .client-tile {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24) !important;
}

[data-theme="dark-blue"] #clients.landing-band-light .client-tile:hover {
    background: #ffffff !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32) !important;
}

/* Testimonials redesign */
.tm-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

.tm-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 30%, rgba(0, 105, 179, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(18, 155, 219, 0.15) 0%, transparent 50%);
}

.tm-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent);
}

.tm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: tmOrbFloat 18s ease-in-out infinite;
}

.tm-orb--one {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -80px;
    background: rgba(0, 105, 179, 0.15);
}

.tm-orb--two {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -60px;
    background: rgba(18, 155, 219, 0.12);
    animation-delay: 6s;
}

@keyframes tmOrbFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -25px) scale(1.06);
    }
}

.tm-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tm-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tm-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.tm-title--accent {
    color: #129bdb;
}

.tm-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}

.tm-featured {
    position: relative;
    padding: 3rem 3.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-bottom: 2rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.tm-featured:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(18, 155, 219, 0.25);
}

.tm-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3rem;
    right: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0069b3, #129bdb, transparent);
    border-radius: 999px;
}

.tm-featured__quote-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.25), rgba(18, 155, 219, 0.15));
    border: 1px solid rgba(18, 155, 219, 0.2);
    color: #129bdb;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.tm-featured__quote {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.tm-featured__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.tm-featured__photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(18, 155, 219, 0.3);
    flex-shrink: 0;
}

.tm-featured__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0069b3, #129bdb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.tm-featured__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.tm-featured__meta {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.tm-featured__stars {
    color: #f59e0b;
    font-size: 0.85rem;
    display: flex;
    gap: 0.2rem;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tm-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.tm-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(18, 155, 219, 0.22);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.tm-card__accent {
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(18, 155, 219, 0.5), transparent);
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tm-card:hover .tm-card__accent {
    opacity: 1;
}

.tm-card__quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 155, 219, 0.1);
    border: 1px solid rgba(18, 155, 219, 0.15);
    color: #129bdb;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.tm-card:hover .tm-card__quote-icon {
    background: rgba(18, 155, 219, 0.18);
    transform: scale(1.08) rotate(-3deg);
}

.tm-card__quote {
    font-size: 0.93rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.tm-card__stars {
    color: #f59e0b;
    font-size: 0.75rem;
    display: flex;
    gap: 0.18rem;
    margin-bottom: 1.25rem;
}

.tm-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-card__photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(18, 155, 219, 0.2);
    flex-shrink: 0;
}

.tm-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0069b3, #129bdb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.tm-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.tm-card__meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

[data-theme="light-blue"] .tm-section {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

@media (max-width: 991px) {
    .tm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-featured {
        padding: 2rem 2rem;
    }
}

@media (max-width: 767px) {
    .tm-section {
        padding: 4rem 0;
    }

    .tm-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tm-featured {
        padding: 1.75rem 1.5rem;
    }

    .tm-featured__quote {
        font-size: 1.05rem;
    }

    .tm-featured__stars {
        display: none;
    }
}


/* ===== Merged from static/css-rtl/style.css ===== */
:root {
    --primary-color: #0069B3;
    --primary-hover: #005b99;
    --secondary-color: #f8fbff;
    --dark-color: #0c2340;
    --accent-color: #129BDB;
    --hero-start: #0069B3;
    --hero-end: #129BDB;
    --hero-base-start: #030712;
    --hero-base-mid: #081427;
    --hero-base-end: #0c2340;
    --section-dark-start: #061020;
    --section-dark-end: #0c2340;
    --section-soft-start: #081428;
    --section-soft-end: #0069B3;
    --footer-accent-start: #0069B3;
    --footer-accent-mid: #129BDB;
    --footer-accent-end: #0069B3;
    --focus-shadow: rgba(18, 155, 219, 0.35);
    --transition: all 0.3s ease-in-out;
}


[data-theme="light-blue"] {
    --primary-color: #1f7ecf;
    --primary-hover: #1768ad;
    --secondary-color: #f3f9ff;
    --dark-color: #0c2340;
    --accent-color: #67c8ed;
    --hero-start: #8fd3ff;
    --hero-end: #4ca9e6;
    --hero-base-start: #f7fcff;
    --hero-base-mid: #e6f5ff;
    --hero-base-end: #c6e6fb;
    --section-dark-start: #edf8ff;
    --section-dark-end: #cfe9fb;
    --section-soft-start: #e7f4ff;
    --section-soft-end: #b9ddf7;
    --footer-accent-start: #7bc9f0;
    --footer-accent-mid: #c7ebff;
    --footer-accent-end: #5baedd;
    --focus-shadow: rgba(31, 126, 207, 0.22);
}

[data-theme="light-blue"] #hero,
[data-theme="light-blue"] .landing-band,
[data-theme="light-blue"] .landing-band-soft {
    color: #0c2340;
}

[data-theme="light-blue"] body {
    background: #eef7ff;
    color: #0c2340;
}

[data-theme="light-blue"] .hero-title,
[data-theme="light-blue"] .section-title,
[data-theme="light-blue"] .stats-number {
    color: #0c2340;
}

[data-theme="light-blue"] .hero-subtitle,
[data-theme="light-blue"] .hero-description,
[data-theme="light-blue"] .section-copy,
[data-theme="light-blue"] .stats-label {
    color: rgba(12, 35, 64, 0.78);
}

[data-theme="light-blue"] .hero-badge,
[data-theme="light-blue"] .section-kicker {
    color: rgba(12, 35, 64, 0.82);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(31, 126, 207, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.reveal-wrapper {
    overflow: hidden;
    display: block;
    vertical-align: bottom;
}

.reveal-item {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    filter: blur(10px);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1.2s ease,
    filter 1.2s ease;
}

.reveal-item.active {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
}

.site-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(18, 155, 219, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}


[data-theme="light-blue"] .site-navbar {
    background: rgba(244, 251, 255, 0.96);
    border-bottom: 1px solid rgba(18, 155, 219, 0.12);
}

[data-theme="dark-blue"] .site-navbar {
    background: rgba(6, 16, 32, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-logo {
    height: 40px;
    width: auto;
    margin-right: 0;
    margin-left: 1.5rem;
}

.site-logo-light {
    display: none;
}

.site-logo-dark {
    display: block;
}

[data-theme="light-blue"] .site-logo-dark {
    display: block;
}

[data-theme="light-blue"] .site-logo-light {
    display: none;
}

[data-theme="dark-blue"] .site-logo-dark {
    display: none;
}

[data-theme="dark-blue"] .site-logo-light {
    display: block;
}

[data-theme="dark-blue"] .site-navbar .btn-outline-primary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark-blue"] .site-navbar .btn-outline-primary:hover,
[data-theme="dark-blue"] .site-navbar .btn-outline-primary:focus {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

[data-theme="light-blue"] .landing-band .section-title,
[data-theme="light-blue"] .landing-band-soft .section-title {
    color: #0c2340;
}

[data-theme="light-blue"] .landing-band .section-copy,
[data-theme="light-blue"] .landing-band-soft .section-copy {
    color: rgba(12, 35, 64, 0.78);
}

[data-theme="light-blue"] .landing-band .section-kicker,
[data-theme="light-blue"] .landing-band-soft .section-kicker {
    color: rgba(12, 35, 64, 0.82);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(31, 126, 207, 0.14);
}

[data-theme="light-blue"] .hero-glass {
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(18, 155, 219, 0.18);
    box-shadow: 0 24px 56px rgba(50, 116, 168, 0.14);
}

[data-theme="light-blue"] .hero-actions .btn-outline-light {
    color: #0c2340;
    border-color: rgba(12, 35, 64, 0.16);
    background: rgba(255, 255, 255, 0.54);
}

[data-theme="light-blue"] .hero-actions .btn-outline-light:hover,
[data-theme="light-blue"] .hero-actions .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.88);
    color: #0c2340;
}

#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.24), transparent 25%),
    radial-gradient(circle at bottom right, rgba(0, 105, 179, 0.22), transparent 30%),
    linear-gradient(
            135deg,
            var(--hero-base-start) 0%,
            var(--hero-base-mid) 45%,
            var(--hero-base-end) 100%
    );
}

.hero-shader-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-shader-layer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.hero-text {
    text-align: right; /* Ensure text aligns to the right */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
    opacity: 0.18;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    z-index: 1;
    animation: none;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-orb-one {
    width: 320px;
    height: 320px;
    top: 8%;
    left: 8%;
    background: rgba(18, 155, 219, 0.38);
}

.hero-orb-two {
    width: 380px;
    height: 380px;
    right: 6%;
    bottom: 10%;
    background: rgba(0, 105, 179, 0.34);
    animation-delay: 2s;
}

.hero-glass {
    position: relative;
    padding: 4rem 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-split {
    min-height: 92vh;
}

.hero-glass-left {
    max-width: 820px;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.hero-glass-left .hero-badge,
.hero-glass-left .hero-subtitle,
.hero-glass-left .hero-description {
    text-align: right;
}

.hero-glass-left .hero-description {
    margin-left: 0;
    margin-right: 0;
}

.hero-space {
    min-height: 420px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.1vw, 1.45rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1rem;
}

.hero-description {
    max-width: 760px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions .btn {
    min-width: 210px;
}

.hero-actions .btn-outline-light {
    border-width: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(14px, -18px, 0) scale(1.04);
    }
}

@media (max-width: 767px) {
    #hero {
        min-height: 88vh;
        padding: 2rem 0;
    }

    .hero-glass {
        padding: 2.5rem 1.25rem;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-split {
        min-height: auto;
    }

    .hero-glass-left {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-glass-left .hero-badge,
    .hero-glass-left .hero-subtitle,
    .hero-glass-left .hero-description {
        text-align: center;
    }

    .hero-glass-left .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-space {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }
}

.landing-band {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background: linear-gradient(
            180deg,
            var(--section-dark-start) 0%,
            var(--section-dark-end) 100%
    );
}

.landing-band-soft {
    background: linear-gradient(
            180deg,
            var(--section-soft-start) 0%,
            var(--section-soft-end) 100%
    );
}

.landing-band-light {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #eef5ff 100%);
}

[data-theme="light-blue"] .landing-band-light {
    background: radial-gradient(circle at top left, rgba(31, 126, 207, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fdff 0%, #e8f5ff 100%);
}

.section-orb {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: heroFloat 14s ease-in-out infinite;
}

.section-orb-left {
    top: 12%;
    left: 5%;
    background: rgba(18, 155, 219, 0.22);
}

.section-orb-right {
    right: 7%;
    top: 18%;
    background: rgba(0, 105, 179, 0.2);
    animation-delay: 3s;
}

.section-glass {
    position: relative;
    border-radius: 28px;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.section-glass-center {
    max-width: 920px;
    margin: 0 auto;
}

.landing-band-light .section-glass {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 30px 70px rgba(10, 37, 64, 0.12);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-band-light .section-kicker {
    color: rgba(0, 86, 179, 0.8);
    background: rgba(0, 105, 179, 0.06);
    border-color: rgba(0, 105, 179, 0.12);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.landing-band-light .section-title {
    color: #0c2340;
}

.section-copy {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.9;
}

.landing-band-light .section-copy {
    color: rgba(12, 35, 64, 0.74);
}

#stats.landing-band-light .section-title {
    color: #0c2340;
}

#stats.landing-band-light .section-kicker {
    color: rgba(0, 86, 179, 0.8);
    background: rgba(0, 105, 179, 0.06);
    border-color: rgba(0, 105, 179, 0.12);
}

.stats-card {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(0, 86, 179, 0.95), rgba(0, 61, 122, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 61, 122, 0.22);
    cursor: pointer;
}


.stats-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 1.35rem;
}

.stats-number {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.stats-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
}

[data-theme="light-blue"] .stats-card {
    background: linear-gradient(180deg, rgba(225, 242, 255, 0.98), rgba(194, 224, 245, 0.98));
    border: 1px solid rgba(18, 155, 219, 0.16);
    box-shadow: 0 24px 56px rgba(40, 102, 150, 0.12);
}

[data-theme="light-blue"] .stats-icon {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.18), rgba(255, 255, 255, 0.74));
    border: 1px solid rgba(18, 155, 219, 0.16);
    color: var(--primary-color);
}

[data-theme="light-blue"] .stats-number {
    color: #0c2340;
}

[data-theme="light-blue"] .stats-label {
    color: rgba(12, 35, 64, 0.72);
}

.card {
    transition: var(--transition);
    border-radius: 15px;
    border: none;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* تنسيق خاص لكروت المشاريع لضمان تناسق الطول */
.project-card {
    background: #fff;
    overflow: hidden;
}

.service-card-light,
.project-card-light {
    background: rgba(255, 255, 255, 0.96);
}

[data-theme="light-blue"] .service-card-light,
[data-theme="light-blue"] .project-card-light {
    background: rgba(231, 244, 255, 0.92);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.08);
}

.service-card-light,
.project-card-light,
.client-tile,
.stats-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card-light:hover,
.project-card-light:hover,
.client-tile:hover,
.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 105, 179, 0.16) !important;
}

.stats-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 28px 60px rgba(0, 105, 179, 0.22) !important;
    border-color: rgba(18, 155, 219, 0.35);
    background: linear-gradient(180deg, rgba(0, 105, 179, 1), rgba(0, 61, 122, 0.96));
}

.stats-card:hover .stats-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.24), rgba(255, 255, 255, 0.1));
}

.stats-card:hover .stats-number {
    color: #ffffff;
}

.stats-card:hover .stats-label {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light-blue"] .stats-card:hover {
    box-shadow: 0 28px 60px rgba(31, 126, 207, 0.16) !important;
    border-color: rgba(18, 155, 219, 0.28);
    background: linear-gradient(180deg, rgba(212, 236, 252, 1), rgba(183, 218, 242, 1));
}

[data-theme="light-blue"] .stats-card:hover .stats-icon {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.22), rgba(255, 255, 255, 0.82));
}

[data-theme="light-blue"] .stats-card:hover .stats-number {
    color: #0c2340;
}

[data-theme="light-blue"] .stats-card:hover .stats-label {
    color: rgba(12, 35, 64, 0.84);
}

.service-card-light:hover,
.project-card-light:hover,
.client-tile:hover {
    border: 1px solid rgba(18, 155, 219, 0.18);
}

.service-card-premium {
    padding: 2.25rem 2rem !important;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.5rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.12), rgba(0, 105, 179, 0.06));
    border: 1px solid rgba(18, 155, 219, 0.12);
}

[data-theme="light-blue"] .service-icon-wrap {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.16), rgba(255, 255, 255, 0.4));
    border-color: rgba(18, 155, 219, 0.18);
}

.service-icon {
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.85rem;
}

.service-description {
    color: rgba(12, 35, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-hover-link {
    margin-top: auto;
    padding-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.28s ease;
}

.service-hover-arrow {
    transition: transform 0.28s ease;
    transform: scaleX(-1);
}

.service-card-premium:hover .service-hover-link,
.service-card-premium:focus-within .service-hover-link {
    opacity: 1;
    transform: translateY(0);
}

.service-card-premium:hover .service-hover-arrow,
.service-card-premium:focus-within .service-hover-arrow {
    transform: scaleX(-1) translateX(4px);
}

.service-hover-link:hover,
.service-hover-link:focus {
    color: var(--primary-hover);
}

.project-card-light {
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(10, 37, 64, 0.1);
}

.project-card-body {
    padding: 1.75rem 1.5rem 1.5rem !important;
}

.project-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.75rem;
}

.project-card-description {
    color: rgba(12, 35, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.project-fallback-media {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.08), rgba(0, 105, 179, 0.04));
}

[data-theme="light-blue"] .project-fallback-media {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.12), rgba(0, 105, 179, 0.06));
}

.project-fallback-icon {
    font-size: 4rem;
    line-height: 1;
    color: #0c2340;
}

.project-card-link {
    margin-top: 1rem;
}

.project-card-link a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 155, 219, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.project-card-link a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- قسم التقنيات (Technologies) --- */
.tech-logo-img {
    max-height: 70px; /* حجم متناسق للتقنيات */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.tech-stack-board {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.tech-item {
    min-width: 140px;
    min-height: 110px;
    padding: 1.25rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.landing-band-light .tech-stack-board {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 24px 60px rgba(10, 37, 64, 0.1);
}

.landing-band-light .tech-item {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 155, 219, 0.1);
}

.contact-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #dff4ff 0%, #c9ebff 100%);
}

.contact-visual {
    position: relative;
    height: 100%;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.35), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 105, 179, 0.32), transparent 32%),
    linear-gradient(135deg, #061020 0%, #0c2340 55%, #0069B3 100%);
    box-shadow: 0 24px 60px rgba(0, 61, 122, 0.16);
}

.contact-shader-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
}

.contact-shader-layer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.contact-visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    color: #fff;
    z-index: 1;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-copy {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 0;
}

.contact-form-card {
    border-radius: 28px;
    padding: 2.25rem 1.75rem;
    background: linear-gradient(180deg, #005b99 0%, #0c2340 100%);
    color: #fff;
    box-shadow: 0 30px 70px rgba(0, 61, 122, 0.2);
}

.contact-form-copy,
.contact-label {
    color: rgba(255, 255, 255, 0.78);
}

.contact-label {
    display: block;
    margin-bottom: 10px;
}

.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-card .form-control {
    background: rgba(255, 255, 255, 0.96);
    color: #0c2340;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-form-card .form-control::placeholder {
    color: rgba(12, 35, 64, 0.45);
}

[data-theme="light-blue"] .contact-section {
    background: linear-gradient(180deg, #f2fbff 0%, #dcefff 100%);
}

[data-theme="light-blue"] .contact-form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(231, 244, 255, 0.94) 100%);
    color: #0c2340;
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 24px 54px rgba(34, 97, 145, 0.1);
}

[data-theme="light-blue"] .contact-form-copy,
[data-theme="light-blue"] .contact-label {
    color: rgba(12, 35, 64, 0.72);
}

[data-theme="light-blue"] .contact-form-card .form-control {
    background: #ffffff;
    color: #0c2340;
    border: 1px solid rgba(12, 35, 64, 0.12);
}

@media (max-width: 991px) {
    .contact-visual {
        min-height: 300px;
    }
}

.tech-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.client-logo-wrapper {
    min-height: 140px; /* يضمن بقاء الشعارات على خط واحد */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-tile {
    min-height: 160px;
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: var(--transition);
}

.client-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(10, 37, 64, 0.12);
}

.client-brand-img {
    max-height: 90px; /* الارتفاع المثالي ليكون الشعار واضحاً */
    max-width: 100%;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: var(--transition);
    object-fit: contain;
}

.client-tile:hover .client-brand-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.clients-showcase .section-head {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.clients-showcase .client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.clients-showcase .client-tile {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
    transition: all 0.3s ease-in-out;
}

.clients-showcase .client-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.clients-showcase .client-brand-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: saturate(1);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.clients-showcase .client-tile:hover .client-brand-img {
    filter: saturate(1.15);
    transform: scale(1.04);
    opacity: 1;
}

#clients .section-head {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.client-name-fallback {
    color: rgba(12, 35, 64, 0.72);
    font-weight: 800;
    text-align: center;
}

#clients.landing-band-light {
    background: #dceeff !important;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.client-tile {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
    transition: all 0.3s ease-in-out;
}

#clients .client-tile {
    animation: clientsFloat 5.2s ease-in-out infinite;
    will-change: transform;
}

#clients .client-tile:nth-child(2n) {
    animation-delay: 0.7s;
}

#clients .client-tile:nth-child(3n) {
    animation-delay: 1.4s;
}

.client-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.client-brand-img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: saturate(1);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.client-tile:hover .client-brand-img {
    filter: saturate(1.25);
    opacity: 1;
    transform: scale(1.04);
}

[data-theme="dark-blue"] #clients.landing-band-light {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%) !important;
}

[data-theme="dark-blue"] #clients .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #clients .section-copy {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] .client-tile {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

[data-theme="dark-blue"] .client-tile:hover {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

[data-theme="dark-blue"] .client-name-fallback {
    color: rgba(255, 255, 255, 0.78);
}

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

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

.news-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 105, 179, 0.16);
    border-color: rgba(18, 155, 219, 0.18);
}

.news-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-card-body {
    padding: 1.5rem;
}

.news-type-badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.08);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.75rem;
}

.news-card-summary {
    color: rgba(12, 35, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

[data-theme="light-blue"] .news-card {
    background: rgba(231, 244, 255, 0.92);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.08);
}

.testimonial-card {
    border-radius: 24px;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 105, 179, 0.16);
    border-color: rgba(18, 155, 219, 0.18);
}

.testimonial-quote-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.12), rgba(0, 105, 179, 0.06));
    border: 1px solid rgba(18, 155, 219, 0.12);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-quote {
    color: rgba(12, 35, 64, 0.78);
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.testimonial-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0c2340;
}

.testimonial-meta {
    color: rgba(12, 35, 64, 0.62);
    font-size: 0.9rem;
}

[data-theme="light-blue"] .testimonial-card {
    background: rgba(231, 244, 255, 0.92);
    border: 1px solid rgba(18, 155, 219, 0.12);
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.08);
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #dee2e6;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--focus-shadow);
}

/* --- القوائم (Navigation) --- */
.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none; /* يفضل إزالة التسطير لمظهر أنظف */
}

.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.grayscale-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* تحسين مظهر الـ Badge فوق صور المشاريع */
.badge {
    padding: 8px 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.site-footer {
    position: relative;
    background: linear-gradient(rgba(25, 40, 70, 0.72), rgba(25, 40, 70, 0.78)),
    url("../images/Footer.jpg") center/cover no-repeat,
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #f8fafc;
    padding: 0;
    overflow: hidden;
}

[data-theme="light-blue"] .site-footer {
    background: linear-gradient(rgba(25, 40, 70, 0.72), rgba(25, 40, 70, 0.78)),
    url("../images/Footer.jpg") center/cover no-repeat,
    linear-gradient(180deg, #eef7ff 0%, #dff1ff 100%);
    color: #f8fafc;
}


.footer-main {
    padding: 4rem 0 2.5rem;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    background: transparent !important;
    margin-bottom: 1.25rem;
}


.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

[data-theme="light-blue"] .footer-title,
[data-theme="light-blue"] .footer-heading {
    color: #ffffff;
}

.footer-description {
    max-width: 420px;
    font-size: 1.08rem;
    color: rgba(248, 250, 252, 0.72);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

[data-theme="light-blue"] .footer-description,
[data-theme="light-blue"] .footer-links a,
[data-theme="light-blue"] .footer-contact li,
[data-theme="light-blue"] .footer-bottom p {
    color: rgba(248, 250, 252, 0.72);
}

.footer-heading {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="light-blue"] .social-btn {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.72);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

[data-theme="light-blue"] .footer-links a:hover {
    color: #ffffff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(248, 250, 252, 0.72);
    line-height: 1.7;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    width: 18px;
}

.footer-contact-value {
    unicode-bidi: isolate;
}

.footer-contact-value--ltr {
    direction: ltr;
    display: inline-block;
    text-align: left;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0 1.75rem;
    text-align: center;
}

[data-theme="light-blue"] .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(248, 250, 252, 0.58);
    font-size: 0.92rem;
}

@media (max-width: 767px) {
    .clients-showcase .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* --- Design Rhythm Patch --- */

#approach,
#stats,
#services,
#technologies,
#projects,
#clients,
#testimonials,
#news,
.contact-section {
    padding: 6rem 0;
}

[data-theme="light-blue"] #approach,
[data-theme="light-blue"] #technologies,
[data-theme="light-blue"] #clients {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #eef5ff 100%);
}

[data-theme="light-blue"] #stats,
[data-theme="light-blue"] #testimonials {
    background: linear-gradient(180deg, #eef5ff 0%, #e6f0ff 100%);
}

[data-theme="light-blue"] #services,
[data-theme="light-blue"] #projects,
[data-theme="light-blue"] #news {
    background: radial-gradient(circle at top left, rgba(18, 155, 219, 0.08), transparent 26%),
    linear-gradient(180deg, #edf8ff 0%, #dcefff 100%);
    color: #0c2340;
}

[data-theme="light-blue"] #services .section-kicker,
[data-theme="light-blue"] #projects .section-kicker,
[data-theme="light-blue"] #news .section-kicker {
    color: rgba(0, 86, 179, 0.85);
    background: rgba(0, 105, 179, 0.07);
    border-color: rgba(0, 105, 179, 0.14);
}

[data-theme="light-blue"] #services .section-title,
[data-theme="light-blue"] #projects .section-title,
[data-theme="light-blue"] #news .section-title {
    color: #0c2340;
}

[data-theme="light-blue"] #services .section-copy,
[data-theme="light-blue"] #projects .section-copy,
[data-theme="light-blue"] #news .section-copy {
    color: rgba(12, 35, 64, 0.74);
}

[data-theme="light-blue"] #services .service-card-light,
[data-theme="light-blue"] #projects .project-card-light,
[data-theme="light-blue"] #news .news-card {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(18, 155, 219, 0.12) !important;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08) !important;
}

[data-theme="light-blue"] #services .service-title,
[data-theme="light-blue"] #projects .project-card-title,
[data-theme="light-blue"] #news .news-card-title {
    color: #0c2340 !important;
}

[data-theme="light-blue"] #services .service-description,
[data-theme="light-blue"] #projects .project-card-description,
[data-theme="light-blue"] #news .news-card-summary {
    color: rgba(12, 35, 64, 0.72) !important;
}

[data-theme="light-blue"] #services .service-hover-link {
    color: var(--primary-color);
}

[data-theme="light-blue"] #projects .filter-btn.btn-outline-primary {
    color: rgba(12, 35, 64, 0.78) !important;
    border-color: rgba(12, 35, 64, 0.18) !important;
    background: rgba(255, 255, 255, 0.58) !important;
}

[data-theme="light-blue"] #projects .filter-btn.btn-outline-primary:hover,
[data-theme="light-blue"] #projects .filter-btn.btn-outline-primary:focus {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #0c2340 !important;
}

[data-theme="dark-blue"] #approach,
[data-theme="dark-blue"] #stats,
[data-theme="dark-blue"] #technologies,
[data-theme="dark-blue"] #clients,
[data-theme="dark-blue"] #testimonials {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #approach .section-kicker,
[data-theme="dark-blue"] #stats .section-kicker,
[data-theme="dark-blue"] #technologies .section-kicker,
[data-theme="dark-blue"] #clients .section-kicker,
[data-theme="dark-blue"] #testimonials .section-kicker {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark-blue"] #approach .section-title,
[data-theme="dark-blue"] #stats .section-title,
[data-theme="dark-blue"] #technologies .section-title,
[data-theme="dark-blue"] #clients .section-title,
[data-theme="dark-blue"] #testimonials .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #approach .section-copy,
[data-theme="dark-blue"] #stats .section-copy,
[data-theme="dark-blue"] #technologies .section-copy,
[data-theme="dark-blue"] #clients .section-copy,
[data-theme="dark-blue"] #testimonials .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark-blue"] #services .service-hover-link {
    color: #7dd3f8;
}

[data-theme="dark-blue"] #services .service-hover-link:hover,
[data-theme="dark-blue"] #services .service-hover-link:focus {
    color: #ffffff;
}

[data-theme="dark-blue"] #approach .section-glass,
[data-theme="dark-blue"] #technologies .tech-stack-board,
[data-theme="dark-blue"] #clients .client-tile,
[data-theme="dark-blue"] #testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

[data-theme="dark-blue"] #technologies .tech-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #clients .text-muted,
[data-theme="dark-blue"] #testimonials .testimonial-quote,
[data-theme="dark-blue"] #testimonials .testimonial-meta {
    color: rgba(255, 255, 255, 0.68) !important;
}

[data-theme="dark-blue"] #testimonials .testimonial-name {
    color: #ffffff;
}

[data-theme="dark-blue"] #testimonials .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark-blue"] #technologies .tech-stack-board {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
    padding: 2.5rem;
}

#technologies .tech-stack-board {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
    padding: 2.5rem;
}

#technologies .tech-item {
    flex-direction: column;
    gap: 0.65rem;
    min-height: 95px;
    min-width: unset;
    padding: 1rem 0.75rem;
    border-radius: 16px;
}

#technologies .tech-logo-img {
    max-height: 44px !important;
    max-width: 80px;
    width: auto;
    object-fit: contain;
}

#clients .client-grid {
    gap: 1.25rem;
}

#clients .client-tile {
    min-height: 130px;
    border-radius: 20px;
}

#clients .client-brand-img {
    max-height: 70px;
    max-width: 140px;
}

.contact-visual {
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 72px rgba(0, 61, 122, 0.28);
}

.contact-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 84%);
    opacity: 0.22;
    pointer-events: none;
}

.contact-visual-overlay {
    padding: 3rem;
    background: linear-gradient(to top, rgba(6, 16, 32, 0.94) 8%, rgba(6, 16, 32, 0.22) 62%, transparent 100%);
}

.captcha-box {
    align-items: flex-start;
}

.captcha-box img {
    border-radius: 8px;
    max-width: 100%;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.captcha-box input[type="text"] {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    color: #0c2340 !important;
    width: 100%;
    min-height: 56px;
    font-size: 0.98rem;
}

.site-navbar {
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(18, 155, 219, 0.1) !important;
}

.site-navbar .btn-outline-primary {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
}

@media (max-width: 767px) {
    [dir="rtl"] .site-navbar .container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        flex-wrap: nowrap;
        direction: rtl;
        gap: 0.5rem;
        align-items: center;
    }

    [dir="rtl"] .site-navbar .d-flex.align-items-center.gap-3 {
        gap: 0.5rem !important;
        flex-wrap: nowrap;
        flex: 0 1 auto;
        flex-direction: row;
        justify-content: flex-start;
        min-width: 0;
    }

    .site-navbar .btn {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        white-space: nowrap;
    }

    [dir="rtl"] .site-navbar .navbar-brand {
        margin-left: 0.5rem;
        margin-right: 0;
        flex-shrink: 0;
    }

    [dir="rtl"] .hero-orb-one {
        width: 180px;
        height: 180px;
        top: 6%;
        right: 4%;
        opacity: 0.42;
    }

    [dir="rtl"] .hero-orb-two {
        width: 220px;
        height: 220px;
        left: -24px;
        bottom: 8%;
        opacity: 0.36;
    }

    .hero-cinematic__badge {
        margin-bottom: 1.5rem;
        padding: 0.42rem 0.9rem;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .hero-cinematic__title {
        font-size: clamp(2.1rem, 10vw, 3rem);
        margin-bottom: 1.25rem;
    }

    .hero-cinematic__line {
        margin-bottom: 2rem;
    }

    .hero-cinematic__scroll {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .svc-item {
        grid-template-columns: 52px 1fr 40px;
        gap: 0.9rem;
        padding: 1.15rem 0.85rem;
    }

    .svc-item__num,
    .svc-item__desc {
        display: none;
    }

    .pf-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    #technologies .tech-stack-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-visual {
        min-height: 380px;
    }

    .contact-visual-overlay {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1.25rem 1.25rem 1.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
    }

    .contact-title {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .contact-copy {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .contact-info-row {
        gap: 0.65rem !important;
    }

    .contact-info-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    #technologies .tech-stack-board {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dojoon-about {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: #ffffff;
}

.dojoon-about__inner {
    z-index: 2;
}

.dojoon-about__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(0, 105, 179, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(18, 155, 219, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f0f8ff 100%);
}

.dojoon-about__noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.dojoon-about__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: aboutOrbFloat 16s ease-in-out infinite;
}

.dojoon-about__orb--one {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -80px;
    background: rgba(0, 105, 179, 0.08);
}

.dojoon-about__orb--two {
    width: 300px;
    height: 300px;
    bottom: -60px;
    right: -60px;
    background: rgba(18, 155, 219, 0.07);
    animation-delay: 4s;
}

.dojoon-about__orb--three {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 50%;
    background: rgba(0, 86, 179, 0.05);
    animation-delay: 8s;
}

@keyframes aboutOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -25px) scale(1.06);
    }
}

.dojoon-marquee-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(0, 105, 179, 0.1);
    border-bottom: 1px solid rgba(0, 105, 179, 0.1);
    padding: 0.85rem 0;
    margin-bottom: 5rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.dojoon-marquee {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(12, 35, 64, 0.35);
}

[dir="rtl"] .dojoon-marquee {
    direction: ltr;
    animation-name: marqueeScrollRTL;
}

.dojoon-marquee__dot {
    color: #0069B3;
    opacity: 0.5;
}

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

@keyframes marqueeScrollRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.dojoon-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.dojoon-about__kicker {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 105, 179, 0.7);
}

.dojoon-about__kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0069B3;
    animation: kickerPulse 2s ease-in-out infinite;
}

@keyframes kickerPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.dojoon-about__headline {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 1.5rem;
}

.dojoon-about__headline-line {
    display: block;
    font-size: clamp(1.65rem, 3.3vw, 2.85rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0c2340;
}

.dojoon-about__headline-line--accent {
    color: #0069B3;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.dojoon-about__headline-line--outline {
    -webkit-text-stroke: 2px #0069B3;
    color: transparent;
}

.dojoon-about__ar {
    font-size: 1.05rem;
    color: rgba(12, 35, 64, 0.5);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.dojoon-about__divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0069B3, #129BDB, transparent);
    margin-bottom: 2.5rem;
    transition: width 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.dojoon-about__facts {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.dojoon-about__fact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dojoon-about__fact-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #0069B3;
    letter-spacing: -0.04em;
}

.dojoon-about__fact-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(12, 35, 64, 0.55);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dojoon-about__fact-sep {
    width: 1px;
    height: 50px;
    background: rgba(0, 105, 179, 0.15);
    flex-shrink: 0;
}

.dojoon-about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(0, 105, 179, 0.05);
    border: 1px solid rgba(0, 105, 179, 0.1);
}

.dojoon-about__highlight-icon {
    color: #0069B3;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dojoon-about__highlight p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(12, 35, 64, 0.7);
}

.dojoon-about__story-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 105, 179, 0.1);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 105, 179, 0.04),
    0 20px 60px rgba(0, 105, 179, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.dojoon-about__story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0069B3, #129BDB, transparent);
    border-radius: 999px;
}

.dojoon-about__story-block {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(0, 105, 179, 0.08);
}

.dojoon-about__story-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dojoon-about__lang-tag {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    background: rgba(0, 105, 179, 0.08);
    color: #0069B3;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.dojoon-about__story-text {
    font-size: 0.96rem;
    line-height: 1.9;
    color: rgba(12, 35, 64, 0.72);
}

.dojoon-about__story-text p {
    margin-bottom: 0.85rem;
}

.dojoon-about__story-text p:last-child {
    margin-bottom: 0;
}

.dojoon-about__value-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.07), rgba(18, 155, 219, 0.04));
    border: 1px solid rgba(0, 105, 179, 0.12);
}

.dojoon-about__value-box i {
    color: #0069B3;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dojoon-about__value-box p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.8;
    color: rgba(12, 35, 64, 0.72);
    font-style: italic;
}

.dojoon-about__cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dojoon-about__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background: #0069B3;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dojoon-about__cta-btn:hover {
    background: #005b99;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 105, 179, 0.3);
}

.dojoon-about__cta-arrow {
    transition: transform 0.3s ease;
}

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

.dojoon-about__cta-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(12, 35, 64, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.dojoon-about__cta-link:hover {
    color: #0069B3;
}

.about-services-row {
    margin-top: 4rem;
    text-align: center;
}

.about-services-label {
    margin: 0 0 1.5rem;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0069B3;
}

.dojoon-about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0;
    justify-content: center;
}

.dojoon-about__tag {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 105, 179, 0.15);
    background: rgba(0, 105, 179, 0.04);
    color: rgba(12, 35, 64, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    cursor: default;
}

.dojoon-about__tag:hover {
    border-color: #0069B3;
    background: rgba(0, 105, 179, 0.08);
    color: #0069B3;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .dojoon-about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dojoon-about__headline-line {
        font-size: clamp(2rem, 7vw, 3rem);
    }
}

@media (max-width: 576px) {
    .dojoon-about {
        padding: 4rem 0 3rem;
    }

    .dojoon-marquee-wrap {
        margin-bottom: 3rem;
    }

    .dojoon-marquee {
        gap: 1.5rem;
        font-size: 0.64rem;
        letter-spacing: 0.14em;
    }

    .dojoon-about__story-card {
        padding: 1.75rem 1.25rem;
    }

    .dojoon-about__cta {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .dojoon-about__cta-btn,
    .dojoon-about__cta-link {
        flex: 1 1 0;
        justify-content: center;
        white-space: nowrap;
    }

    .dojoon-about__cta-btn {
        padding: 0.7rem 1rem;
        font-size: 0.78rem;
    }

    .dojoon-about__cta-link {
        font-size: 0.74rem;
        text-align: center;
    }

    .dojoon-about__fact-sep {
        display: none;
    }

    .dojoon-about__fact-num {
        font-size: 1.8rem;
    }

    .dojoon-about__tags {
        gap: 0.5rem;
    }
}

[dir="rtl"] .dojoon-about__kicker,
[dir="rtl"] .dojoon-about__highlight,
[dir="rtl"] .dojoon-about__facts,
[dir="rtl"] .dojoon-about__cta {
    justify-content: flex-start;
}

[dir="rtl"] .dojoon-about__headline,
[dir="rtl"] .dojoon-about__ar,
[dir="rtl"] .dojoon-about__highlight p,
[dir="rtl"] .dojoon-about__story-card,
[dir="rtl"] .dojoon-about__story-text,
[dir="rtl"] .dojoon-about__value-box p {
    text-align: right;
}

[dir="rtl"] .text-dir-auto {
    text-align: right !important;
}

[dir="rtl"] .icon-dir-auto {
    display: inline-block;
    transform: scaleX(-1);
}

[dir="rtl"] #theme-text {
    margin-left: 0 !important;
    margin-right: 4px;
}

[dir="rtl"] .tm-featured__author,
[dir="rtl"] .tm-card__author {
    text-align: right;
}

[dir="rtl"] .tm-featured__stars {
    margin-right: auto;
    margin-left: 0 !important;
}

[data-theme="dark-blue"] .dojoon-about {
    background: linear-gradient(180deg, #081428 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .dojoon-about__bg {
    background: radial-gradient(ellipse at 10% 50%, rgba(18, 155, 219, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(0, 105, 179, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #081428 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .dojoon-about__headline-line {
    color: #ffffff;
}

[data-theme="dark-blue"] .dojoon-about__headline-line--accent {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__headline-line--outline {
    -webkit-text-stroke-color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__ar {
    color: rgba(255, 255, 255, 0.38);
}

[data-theme="dark-blue"] .dojoon-about__kicker {
    color: rgba(18, 155, 219, 0.8);
}

[data-theme="dark-blue"] .dojoon-about__kicker-dot {
    background: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__fact-num {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__fact-label {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark-blue"] .dojoon-about__fact-sep {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark-blue"] .dojoon-about__highlight {
    background: rgba(18, 155, 219, 0.08);
    border-color: rgba(18, 155, 219, 0.15);
}

[data-theme="dark-blue"] .dojoon-about__highlight p {
    color: rgba(255, 255, 255, 0.62);
}

[data-theme="dark-blue"] .dojoon-about__highlight-icon {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__story-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark-blue"] .dojoon-about__story-text {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] .dojoon-about__lang-tag {
    background: rgba(18, 155, 219, 0.12);
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__story-block {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .dojoon-about__value-box {
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.1), rgba(0, 105, 179, 0.06));
    border-color: rgba(18, 155, 219, 0.15);
}

[data-theme="dark-blue"] .dojoon-about__value-box i {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__value-box p {
    color: rgba(255, 255, 255, 0.58);
}

[data-theme="dark-blue"] .dojoon-about__cta-link {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark-blue"] .dojoon-about__cta-link:hover {
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-about__tag {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.42);
}

[data-theme="dark-blue"] .dojoon-about__tag:hover {
    border-color: #129BDB;
    background: rgba(18, 155, 219, 0.1);
    color: #129BDB;
}

[data-theme="dark-blue"] .dojoon-marquee-wrap {
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .dojoon-marquee {
    color: rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════════════════════
   Added: home hero mini-stats + achievement strip + tech labels
═══════════════════════════════════════════════════════════ */

/* ── Hero mini-stats (inside glass card) ──────────────────── */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.hero-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-mini-stat__num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-mini-stat__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-mini-stat__sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

[data-theme="light-blue"] .hero-mini-stats {
    border-top-color: rgba(12, 35, 64, 0.1);
}

[data-theme="light-blue"] .hero-mini-stat__num {
    color: #0c2340;
}

[data-theme="light-blue"] .hero-mini-stat__label {
    color: rgba(12, 35, 64, 0.5);
}

[data-theme="light-blue"] .hero-mini-stat__sep {
    background: rgba(12, 35, 64, 0.1);
}

@media (max-width: 576px) {
    .hero-mini-stats {
        gap: 1.25rem;
    }

    .hero-mini-stat__sep {
        display: none;
    }
}

/* ── Achievement strip (replaces old stats cards) ─────────── */
.dojoon-achievement-strip {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 50%, #0069b3 100%);
    overflow: hidden;
}

.dojoon-achievement-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.dojoon-achievement-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.dojoon-achievement-strip__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2.5rem 3rem;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    transition: background 0.3s ease;
}

.dojoon-achievement-strip__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dojoon-achievement-strip__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #129bdb;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dojoon-achievement-strip__item:hover .dojoon-achievement-strip__icon {
    transform: scale(1.1);
    background: rgba(18, 155, 219, 0.15);
}

.dojoon-achievement-strip__num {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.dojoon-achievement-strip__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
}

.dojoon-achievement-strip__sep {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Light theme override */
[data-theme="light-blue"] .dojoon-achievement-strip {
    background: linear-gradient(135deg, #e6f4ff 0%, #cce8ff 50%, #b3daff 100%);
}

[data-theme="light-blue"] .dojoon-achievement-strip::before {
    background-image: linear-gradient(rgba(0, 105, 179, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 179, 0.06) 1px, transparent 1px);
}

[data-theme="light-blue"] .dojoon-achievement-strip__icon {
    background: rgba(0, 105, 179, 0.08);
    border-color: rgba(0, 105, 179, 0.14);
    color: #0069b3;
}

[data-theme="light-blue"] .dojoon-achievement-strip__num {
    color: #0c2340;
}

[data-theme="light-blue"] .dojoon-achievement-strip__label {
    color: rgba(12, 35, 64, 0.55);
}

[data-theme="light-blue"] .dojoon-achievement-strip__sep {
    background: rgba(0, 105, 179, 0.1);
}

[data-theme="light-blue"] .dojoon-achievement-strip__item:hover {
    background: rgba(0, 105, 179, 0.05);
}

@media (max-width: 767px) {
    .dojoon-achievement-strip__inner {
        flex-direction: column;
        gap: 0;
    }

    .dojoon-achievement-strip__item {
        width: 100%;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        justify-content: flex-start;
    }

    [data-theme="light-blue"] .dojoon-achievement-strip__item {
        border-bottom-color: rgba(0, 105, 179, 0.08);
    }

    .dojoon-achievement-strip__sep {
        display: none;
    }
}

/* ── Tech item name label ──────────────────────────────────── */
#technologies .tech-item span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(12, 35, 64, 0.6);
    text-align: center;
    display: block;
}

[data-theme="dark-blue"] #technologies .tech-item span {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   High Impact Features
═══════════════════════════════════════════════════════════ */

/* ── 1. SCROLL PROGRESS BAR ──────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0069b3, #129bdb, #0069b3);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

[data-theme="light-blue"] .scroll-progress {
    background: linear-gradient(90deg, #1f7ecf, #67c8ed, #1f7ecf);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
}

/* ── 2. ACTIVE NAV LINK ──────────────────────────────────── */
.site-navbar .nav-link {
    position: relative;
    padding-bottom: 0.35rem !important;
    color: rgba(12, 35, 64, 0.7) !important;
    font-weight: 500;
    transition: color 0.25s ease;
}

.site-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

[data-theme="dark-blue"] .site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark-blue"] .site-navbar .nav-link.active,
[data-theme="dark-blue"] .site-navbar .nav-link:hover {
    color: #ffffff !important;
}

[data-theme="dark-blue"] .site-navbar .nav-link::after {
    background: #129bdb;
}

[data-theme="light-blue"] .site-navbar .nav-link {
    color: rgba(12, 35, 64, 0.7) !important;
}

[data-theme="light-blue"] .site-navbar .nav-link.active,
[data-theme="light-blue"] .site-navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ── 3. TYPING CURSOR ────────────────────────────────────── */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 2px;
    animation: cursorBlink 0.8s ease-in-out infinite;
}

@keyframes cursorBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

[data-theme="light-blue"] .typing-cursor {
    background: rgba(12, 35, 64, 0.7);
}

/* ═══════════════════════════════════════════════════════
   Why Dojoon Section
═══════════════════════════════════════════════════════ */
.wd-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

.wd-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(0, 105, 179, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 20%, rgba(18, 155, 219, 0.15) 0%, transparent 45%);
}

.wd-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

.wd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: wdOrbFloat 18s ease-in-out infinite;
}

.wd-orb--one {
    width: 450px;
    height: 450px;
    top: -100px;
    left: -100px;
    background: rgba(0, 105, 179, 0.15);
}

.wd-orb--two {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -60px;
    background: rgba(18, 155, 219, 0.12);
    animation-delay: 5s;
}

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

    50% {
        transform: translate(25px, -30px) scale(1.07);
    }
}

.wd-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.wd-kicker {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wd-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.wd-title--accent {
    color: #129bdb;
}

.wd-title--outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.wd-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.wd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.wd-card {
    position: relative;
    padding: 2.25rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    overflow: hidden;
}

.wd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 155, 219, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wd-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(18, 155, 219, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(18, 155, 219, 0.1);
}

.wd-card:hover::before {
    opacity: 1;
}

.wd-card--featured {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.18), rgba(18, 155, 219, 0.08));
    border-color: rgba(18, 155, 219, 0.2);
}

.wd-card--featured:hover {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.25), rgba(18, 155, 219, 0.12));
    border-color: rgba(18, 155, 219, 0.35);
}

.wd-card__number {
    position: absolute;
    top: 1.5rem;
    left: 1.75rem;
    right: auto;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    transition: color 0.35s ease;
}

.wd-card:hover .wd-card__number {
    color: rgba(18, 155, 219, 0.08);
}

.wd-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.15), rgba(0, 105, 179, 0.08));
    border: 1px solid rgba(18, 155, 219, 0.15);
    color: #129bdb;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.35s ease, background 0.35s ease;
}

.wd-card:hover .wd-card__icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(18, 155, 219, 0.22), rgba(0, 105, 179, 0.12));
}

.wd-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.wd-card__ar {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
    font-style: italic;
}

.wd-card__body {
    font-size: 0.93rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1.25rem;
}

.wd-card__tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
}

.wd-card:hover .wd-card__tag {
    background: rgba(18, 155, 219, 0.1);
    border-color: rgba(18, 155, 219, 0.2);
    color: #129bdb;
}

[data-theme="light-blue"] .wd-section {
    background: linear-gradient(135deg, #e8f5ff 0%, #d4ecff 55%, #c0e3ff 100%);
}

[data-theme="light-blue"] .wd-bg {
    background: radial-gradient(ellipse at 0% 50%, rgba(0, 105, 179, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 20%, rgba(18, 155, 219, 0.08) 0%, transparent 45%);
}

[data-theme="light-blue"] .wd-grid-overlay {
    background-image: linear-gradient(rgba(0, 105, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 179, 0.04) 1px, transparent 1px);
}

[data-theme="light-blue"] .wd-kicker {
    color: rgba(0, 86, 179, 0.85);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 105, 179, 0.14);
}

[data-theme="light-blue"] .wd-title {
    color: #0c2340;
}

[data-theme="light-blue"] .wd-title--accent {
    color: #0069b3;
}

[data-theme="light-blue"] .wd-title--outline {
    -webkit-text-stroke-color: rgba(0, 105, 179, 0.3);
}

[data-theme="light-blue"] .wd-subtitle {
    color: rgba(12, 35, 64, 0.65);
}

[data-theme="light-blue"] .wd-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 105, 179, 0.1);
    box-shadow: 0 8px 30px rgba(0, 105, 179, 0.06);
}

[data-theme="light-blue"] .wd-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 105, 179, 0.2);
    box-shadow: 0 20px 50px rgba(0, 105, 179, 0.12);
}

[data-theme="light-blue"] .wd-card--featured {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.1), rgba(18, 155, 219, 0.05));
}

[data-theme="light-blue"] .wd-card__number {
    color: rgba(0, 105, 179, 0.06);
}

[data-theme="light-blue"] .wd-card__icon-wrap {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.1), rgba(18, 155, 219, 0.05));
    border-color: rgba(0, 105, 179, 0.12);
    color: #0069b3;
}

[data-theme="light-blue"] .wd-card__title {
    color: #0c2340;
}

[data-theme="light-blue"] .wd-card__ar {
    color: rgba(12, 35, 64, 0.35);
}

[data-theme="light-blue"] .wd-card__body {
    color: rgba(12, 35, 64, 0.65);
}

[data-theme="light-blue"] .wd-card__tag {
    background: rgba(0, 105, 179, 0.05);
    border-color: rgba(0, 105, 179, 0.1);
    color: rgba(12, 35, 64, 0.5);
}

[data-theme="light-blue"] .wd-card:hover .wd-card__tag {
    background: rgba(0, 105, 179, 0.1);
    border-color: rgba(0, 105, 179, 0.2);
    color: #0069b3;
}

[data-theme="light-blue"] .wd-card--cta {
    background: linear-gradient(135deg, #0069b3 0%, #005b99 100%);
}

[data-theme="light-blue"] .wd-card--cta:hover {
    background: linear-gradient(135deg, #0077cc 0%, #3d91e4 50%, #004d85 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
    .wd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wd-section {
        padding: 4rem 0;
    }

    .wd-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wd-card {
        padding: 1.75rem 1.5rem;
    }

    .wd-card--cta {
        min-height: unset;
    }
}

/* Requested visual overrides */
#services .service-card-light {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#services .service-title {
    color: #ffffff !important;
}

#services .service-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Cinematic hero */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cinematic {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cinematic__badge {
    display: inline-block;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 105, 179, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1A4FBF;
    opacity: 0;
    transform: translateY(12px);
    animation: heroFadeUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.hero-cinematic__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #129bdb;
    animation: badgePulse 2s ease-in-out infinite;
}

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

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

.hero-cinematic__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    color: #ffffff !important;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
    margin-bottom: 1.25rem;
    opacity: 1;
    transform: none;
    animation: none;
}

.hero-cinematic__title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cinematic__title.is-animated .hero-cinematic__title-word {
    animation: wordReveal 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.08s);
}

.hero-arrow {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 300 !important;
    font-size: 0.65em;
    margin: 0 0.25em;
    vertical-align: middle;
    animation: heroArrowFloat 2.0s ease-in-out infinite;
    line-height: 1;
}

[dir="rtl"] .hero-arrow {
    margin: 0 0.2em;
}

.hero-arrow i {
    display: inline-block;
    font-size: 0.9em;
    line-height: 1;
}

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

    50% {
        transform: translateY(5px);
    }
}

.hero-cinematic__title-space {
    display: inline-block;
    width: 0.28em;
}

.hero-cinematic__subtitle,
.hero-sub,
.hero-description {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem) !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    max-width: 580px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.65s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cinematic__line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0069b3, #129bdb, transparent);
    border-radius: 999px;
    margin: 0 auto 3rem;
    animation: lineExpand 1s cubic-bezier(0.19, 1, 0.22, 1) 1.6s forwards;
}

@keyframes lineExpand {
    to {
        width: min(500px, 60%);
    }
}

.hero-cinematic__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s forwards;
}

.hero-cinematic__scroll-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

    50% {
        transform: translateY(5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-theme="light-blue"] .hero-cinematic__scroll {
    color: #ffffff;
}

[data-theme="light-blue"] .hero-cinematic__scroll-icon {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.hero-cinematic__title,
.hero-title,
[class*="hero"] h1,
[class*="hero"] h2 {
    text-transform: none !important;
}

@media (max-width: 767px) {
    .hero-cinematic {
        max-width: 100%;
    }

    .hero-cinematic__title {
        font-size: clamp(1.85rem, 7vw, 2.8rem) !important;
        max-width: 100%;
    }

    .hero-cinematic__subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

/* Services redesigned */
.svc-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.svc-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(0, 105, 179, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(18, 155, 219, 0.06) 0%, transparent 50%);
}

.svc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: svcFloat 14s ease-in-out infinite;
}

.svc-orb--one {
    width: 350px;
    height: 350px;
    top: -80px;
    left: -80px;
    background: rgba(0, 105, 179, 0.07);
}

.svc-orb--two {
    width: 280px;
    height: 280px;
    bottom: -60px;
    right: -60px;
    background: rgba(18, 155, 219, 0.06);
    animation-delay: 5s;
}

@keyframes svcFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -20px);
    }
}

.svc-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.07);
    border: 1px solid rgba(0, 105, 179, 0.12);
    color: #0069b3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.svc-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0c2340;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.05;
}

.svc-title--accent {
    color: #0069b3;
}

.svc-subtitle {
    color: rgba(12, 35, 64, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.svc-cta-link {
    display: inline-flex;
    align-items: center;
    color: #0069b3;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 105, 179, 0.2);
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.svc-cta-link:hover {
    color: #005b99;
    border-bottom-color: #0069b3;
}

.svc-cta-link i {
    transition: transform 0.25s ease;
}

.svc-cta-link:hover i {
    transform: translate(3px, -3px);
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-item {
    display: grid;
    grid-template-columns: 60px 70px 1fr 50px;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem;
    border-bottom: 1px solid rgba(0, 105, 179, 0.08);
    border-radius: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), all 0.3s ease;
    cursor: default;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
}

.svc-item.svc-item--visible {
    opacity: 1;
    transform: translateX(0);
}

.svc-item:nth-child(1) {
    transition-delay: 0s;
}

.svc-item:nth-child(2) {
    transition-delay: 0.1s;
}

.svc-item:nth-child(3) {
    transition-delay: 0.2s;
}

.svc-item:nth-child(4) {
    transition-delay: 0.3s;
}

.svc-item:nth-child(5) {
    transition-delay: 0.4s;
}

.svc-item:nth-child(6) {
    transition-delay: 0.5s;
}

.svc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(0, 105, 179, 0.04);
    border-radius: 0 16px 16px 0;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.svc-item:hover::before {
    width: 100%;
}

.svc-item:first-child {
    border-top: 1px solid rgba(0, 105, 179, 0.08);
}

.svc-item:hover {
    background: transparent;
}

.svc-item__num {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(0, 105, 179, 0.3);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.svc-item:hover .svc-item__num {
    color: #0069b3;
}

.svc-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.08), rgba(18, 155, 219, 0.04));
    border: 1px solid rgba(0, 105, 179, 0.1);
    color: #0069b3;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-item:hover .svc-item__icon {
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.15), rgba(18, 155, 219, 0.08));
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(0, 105, 179, 0.15);
}

.svc-item__content {
    position: relative;
    z-index: 1;
}

.svc-item__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.svc-item:hover .svc-item__title {
    color: #0069b3;
}

.svc-item__desc {
    color: rgba(12, 35, 64, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.svc-item__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 105, 179, 0.06);
    border: 1px solid rgba(0, 105, 179, 0.1);
    color: rgba(0, 105, 179, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.svc-item:hover .svc-item__arrow {
    background: #0069b3;
    border-color: #0069b3;
    color: #ffffff;
    transform: rotate(45deg);
}

[data-theme="dark-blue"] .svc-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .svc-bg {
    background: radial-gradient(ellipse at 0% 0%, rgba(18, 155, 219, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 105, 179, 0.07) 0%, transparent 50%);
}

[data-theme="dark-blue"] .svc-kicker {
    background: rgba(18, 155, 219, 0.1);
    border-color: rgba(18, 155, 219, 0.18);
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-title {
    color: #ffffff;
}

[data-theme="dark-blue"] .svc-title--accent {
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark-blue"] .svc-cta-link {
    color: #129bdb;
    border-bottom-color: rgba(18, 155, 219, 0.3);
}

[data-theme="dark-blue"] .svc-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .svc-item:first-child {
    border-top-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark-blue"] .svc-item::before {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark-blue"] .svc-item__num {
    color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark-blue"] .svc-item:hover .svc-item__num {
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-item__icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-item__title {
    color: #ffffff;
}

[data-theme="dark-blue"] .svc-item:hover .svc-item__title {
    color: #129bdb;
}

[data-theme="dark-blue"] .svc-item__desc {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark-blue"] .svc-item__arrow {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark-blue"] .svc-item:hover .svc-item__arrow {
    background: #129bdb;
    border-color: #129bdb;
    color: #ffffff;
}

@media (max-width: 767px) {
    .svc-item {
        grid-template-columns: 40px 52px 1fr 40px;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .svc-item__num {
        display: none;
    }

    .svc-item {
        grid-template-columns: 52px 1fr 40px;
    }
}

/* Portfolio redesigned */
.pf-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

.pf-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 105, 179, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(18, 155, 219, 0.12) 0%, transparent 45%);
}

.pf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: pfFloat 16s ease-in-out infinite;
}

.pf-orb--one {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: rgba(0, 105, 179, 0.15);
}

.pf-orb--two {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -60px;
    background: rgba(18, 155, 219, 0.1);
    animation-delay: 6s;
}

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

    50% {
        transform: translate(-20px, 25px) scale(1.05);
    }
}

.pf-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pf-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pf-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.pf-title--accent {
    color: #129bdb;
}

.pf-filters {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pf-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.pf-filter:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.pf-filter.active {
    background: #0069b3;
    border-color: #0069b3;
    color: #ffffff;
}

[data-theme="light-blue"] .pf-filter {
    border-color: rgba(17, 34, 79, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(17, 34, 79, 0.78);
}

[data-theme="light-blue"] .pf-filter:hover {
    background: rgba(17, 34, 79, 0.08);
    color: #11224f;
    border-color: rgba(17, 34, 79, 0.24);
}

[data-theme="light-blue"] .pf-filter.active {
    background: #0069b3;
    border-color: #0069b3;
    color: #ffffff;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pf-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(18, 155, 219, 0.3);
}

.pf-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pf-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-card__img {
    transform: scale(1.06);
}

.pf-card__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.15), rgba(18, 155, 219, 0.08));
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease;
}

.pf-card:hover .pf-card__fallback {
    color: rgba(18, 155, 219, 0.5);
}

.pf-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 30, 60, 0.9) 0%, rgba(0, 30, 60, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pf-card:hover .pf-card__overlay {
    opacity: 1;
}

.pf-card__view-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transform: translateY(10px);
    transition: transform 0.35s ease, background 0.25s ease;
}

.pf-card:hover .pf-card__view-btn {
    transform: translateY(0);
}

.pf-card__view-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.pf-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.85);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.pf-card__body {
    padding: 1.5rem;
}

.pf-card__body-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pf-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.pf-card__desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

.pf-card__link-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 105, 179, 0.06);
    border: 1px solid rgba(0, 105, 179, 0.1);
    color: #0069b3;
    font-size: 0.78rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.pf-card__link-icon:hover {
    background: #0069b3;
    color: #ffffff;
    border-color: #0069b3;
    transform: rotate(45deg);
}

[data-theme="dark-blue"] .pf-card__link-icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark-blue"] .pf-card__link-icon:hover {
    background: #129bdb;
    color: #ffffff;
    border-color: #129bdb;
}

[data-theme="light-blue"] .pf-section {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

[data-theme="light-blue"] .pf-card__title,
[data-theme="light-blue"] #projects .pf-card__title {
    color: #11224f !important;
    text-shadow: none;
}

[data-theme="light-blue"] .pf-card__desc,
[data-theme="light-blue"] #projects .pf-card__desc {
    color: rgba(17, 34, 79, 0.82) !important;
}

[data-theme="dark-blue"] .pf-card__title,
[data-theme="dark-blue"] #projects .pf-card__title {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

[data-theme="dark-blue"] .pf-card__desc,
[data-theme="dark-blue"] #projects .pf-card__desc {
    color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 991px) {
    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pf-grid {
        grid-template-columns: 1fr;
    }

    .pf-section {
        padding: 4rem 0;
    }

    .svc-section {
        padding: 4rem 0;
    }
}

/* Page loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #030712 0%, #0c2340 100%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

[data-theme="light-blue"] .page-loader {
    background: linear-gradient(135deg, #eef7ff 0%, #d8ecff 55%, #c7e4ff 100%);
}

[data-theme="dark-blue"] .page-loader {
    background: linear-gradient(135deg, #030712 0%, #0c2340 100%);
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.page-loader__logo {
    opacity: 0;
    transform: translateY(20px);
    animation: loaderLogoIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes loaderLogoIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-loader__logo-img {
    height: 52px;
    width: auto;
}

.page-loader__logo-img--light {
    display: block;
}

.page-loader__logo-img--dark {
    display: none;
}

[data-theme="light-blue"] .page-loader__logo-img--dark {
    display: block;
}

[data-theme="light-blue"] .page-loader__logo-img--light {
    display: none;
}

[data-theme="dark-blue"] .page-loader__logo-img--dark {
    display: none;
}

[data-theme="dark-blue"] .page-loader__logo-img--light {
    display: block;
}

.page-loader__bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

[data-theme="light-blue"] .page-loader__bar {
    background: rgba(12, 35, 64, 0.12);
}

.page-loader__bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0069b3, #129bdb);
    border-radius: 999px;
    animation: loaderBar 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes loaderBar {
    0% {
        width: 0;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.page-loader__tagline {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: loaderLogoIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

[data-theme="light-blue"] .page-loader__tagline {
    color: rgba(12, 35, 64, 0.45);
}

body.is-loading {
    overflow: hidden;
}

/* Dark mode review */
[data-theme="dark-blue"] .svc-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .dojoon-about__hero-subtitle {
    color: #ffffff;
}

[data-theme="dark-blue"] .dojoon-about__hero-desc {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] .dojoon-about__hero-actions .btn-outline-primary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark-blue"] .dojoon-achievement-strip {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 50%, #0069b3 100%);
}

[data-theme="dark-blue"] #why-dojoon {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%) !important;
}

[data-theme="dark-blue"] #clients {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #clients .client-tile {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #clients .client-brand-img {
    filter: grayscale(100%);
    opacity: 0.7;
}

[data-theme="dark-blue"] #clients .client-tile:hover .client-brand-img {
    filter: grayscale(0%);
    opacity: 1;
}

[data-theme="dark-blue"] #clients .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #clients .section-copy {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] #testimonials {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #testimonials .testimonial-quote {
    color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark-blue"] #testimonials .testimonial-name {
    color: #ffffff;
}

[data-theme="dark-blue"] #testimonials .testimonial-meta {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark-blue"] #testimonials .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark-blue"] #testimonials .section-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #testimonials .section-copy {
    color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark-blue"] #news {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #news .news-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark-blue"] #news .news-card-title {
    color: #ffffff !important;
}

[data-theme="dark-blue"] #news .news-card-summary {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="dark-blue"] .contact-section {
    background: linear-gradient(180deg, #061020 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .contact-form-card {
    background: linear-gradient(180deg, #005b99 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .site-footer {
    background: linear-gradient(rgba(25, 40, 70, 0.72), rgba(25, 40, 70, 0.78)),
    url("../images/Footer.jpg") center/cover no-repeat,
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #f8fafc;
}

[data-theme="dark-blue"] .footer-description,
[data-theme="dark-blue"] .footer-links a,
[data-theme="dark-blue"] .footer-contact li,
[data-theme="dark-blue"] .footer-bottom p {
    color: rgba(248, 250, 252, 0.65);
}

[data-theme="dark-blue"] .footer-title,
[data-theme="dark-blue"] .footer-heading {
    color: #ffffff;
}

[data-theme="dark-blue"] .back-to-top {
    background: linear-gradient(135deg, #0069b3, #129bdb);
}

/* Consistent section spacing */
#about-intro,
#stats,
#services,
#why-dojoon,
#projects,
#technologies,
#clients,
#testimonials,
#news,
.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Mobile review */
@media (max-width: 991px) {
    .contact-visual {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    #hero {
        min-height: 100svh;
    }

    .hero-cinematic__title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -0.03em;
        padding: 0 1rem;
    }

    .hero-cinematic__badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.9rem;
        letter-spacing: 0.15em;
    }

    #about-intro,
    #stats,
    #services,
    #why-dojoon,
    #projects,
    #technologies,
    #clients,
    #testimonials,
    #news,
    .contact-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .dojoon-about__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .dojoon-about__hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .dojoon-about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dojoon-about {
        padding: 4rem 0 3rem;
    }

    .dojoon-marquee-wrap {
        margin-bottom: 2.5rem;
    }

    .dojoon-achievement-strip__inner {
        flex-direction: column;
    }

    .dojoon-achievement-strip__item {
        width: 100%;
        justify-content: flex-start;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dojoon-achievement-strip__sep {
        display: none;
    }

    .svc-item {
        grid-template-columns: 52px 1fr 40px;
        gap: 0.85rem;
        padding: 1.25rem 1rem;
    }

    .svc-item__num,
    .svc-item__desc {
        display: none;
    }

    .svc-section,
    .pf-section,
    .contact-section {
        padding: 4rem 0;
    }

    .pf-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pf-filters {
        gap: 0.4rem;
    }

    .pf-filter {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: left;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 576px) {
    .wd-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .wd-section {
        padding: 4rem 0;
    }

    .wd-title {
        font-size: 2.2rem;
    }

    .wd-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .wd-card__number {
        top: 1rem;
        left: 1rem;
        right: auto;
        font-size: 2.6rem;
    }

    .wd-card__icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        margin-bottom: 1.1rem;
        font-size: 1.1rem;
    }

    .wd-card__title {
        font-size: 1.05rem;
    }

    .wd-card__ar {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .wd-card__body {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .wd-card__tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .wd-card--cta {
        min-height: unset;
        padding: 1.5rem 1.25rem;
    }

    .wd-card__cta-label {
        margin-bottom: 0.6rem;
    }

    .wd-card__cta-title {
        font-size: 1.1rem;
    }

    .wd-card__cta-ar {
        font-size: 0.78rem;
        margin-bottom: 1.1rem;
    }

    .wd-card__cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.82rem;
    }

    .clients-showcase .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .client-tile,
    .clients-showcase .client-tile {
        min-height: 120px;
        padding: 1rem;
        border-radius: 18px;
    }

    .client-brand-img,
    .clients-showcase .client-brand-img {
        max-height: 68px;
    }

    .tech-stack-board {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .tech-item {
        min-width: 0;
        min-height: 92px;
        padding: 0.9rem;
        border-radius: 18px;
    }

    .tech-logo-img {
        max-height: 52px;
    }

    .pf-card {
        border-radius: 18px;
    }

    .pf-card__media {
        height: 170px;
    }

    .pf-card__badge {
        top: 0.75rem;
        right: 0.75rem;
        left: auto;
        font-size: 0.62rem;
        padding: 0.25rem 0.6rem;
    }

    .pf-card__body {
        padding: 1.1rem 1rem;
    }

    .pf-card__title {
        font-size: 0.98rem;
    }

    .pf-card__desc {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .pf-card__link-icon {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .pf-card__view-btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.76rem;
    }

    .tm-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .tm-card__quote-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 1rem;
        border-radius: 10px;
        font-size: 0.78rem;
    }

    .tm-card__quote {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .tm-card__stars {
        margin-bottom: 1rem;
        font-size: 0.7rem;
    }

    .tm-card__author {
        gap: 0.7rem;
        padding-top: 1rem;
    }

    .tm-card__photo,
    .tm-card__avatar {
        width: 40px;
        height: 40px;
    }

    .tm-card__name {
        font-size: 0.82rem;
    }

    .tm-card__meta {
        font-size: 0.7rem;
    }
}

/* Clients section redesign */
.clients-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: #f0f7ff;
}

.clients-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(240, 247, 255, 0.58), rgba(240, 247, 255, 0.66)),
    url("../images/tech.jpg") center/cover no-repeat,
    radial-gradient(ellipse at 20% 50%, rgba(0, 105, 179, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(18, 155, 219, 0.05) 0%, transparent 50%);
}

.clients-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.clients-section__kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 105, 179, 0.12);
    color: #0069b3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.clients-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0c2340;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.clients-section__title--accent {
    color: #0069b3;
}

.clients-section__subtitle {
    color: rgba(12, 35, 64, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.clients-grid__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 112px;
    padding: 1.4rem;
    border-radius: 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
    text-decoration: none;
    cursor: default;
    transition: transform 0.28s ease;
}

a.clients-grid__card {
    cursor: pointer;
}

.clients-grid__card:hover {
    transform: translateY(-5px);
}

.clients-grid__shine {
    display: none;
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.clients-grid__card:hover .clients-grid__shine {
    left: 125%;
}

.clients-grid__logo {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: 60px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.92;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.clients-grid__card:hover .clients-grid__logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

.clients-grid__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0c2340;
    text-align: center;
}

[data-theme="dark-blue"] .clients-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] .clients-section__kicker {
    background: rgba(18, 155, 219, 0.1);
    border-color: rgba(18, 155, 219, 0.18);
    color: #129bdb;
}

[data-theme="dark-blue"] .clients-section__title {
    color: #ffffff;
}

[data-theme="dark-blue"] .clients-section__title--accent {
    color: #129bdb;
}

[data-theme="dark-blue"] .clients-section__subtitle {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark-blue"] .clients-grid__card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

[data-theme="dark-blue"] .clients-grid__card:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    border-color: rgba(18, 155, 219, 0.22);
}

[data-theme="dark-blue"] .clients-grid__shine {
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
}

[data-theme="dark-blue"] .clients-grid__logo {
    filter: none;
    opacity: 0.92;
}

[data-theme="dark-blue"] .clients-grid__card:hover .clients-grid__logo {
    filter: none;
    opacity: 1;
}

[data-theme="dark-blue"] .clients-grid__name {
    color: #ffffff;
}

@media (max-width: 767px) {
    .clients-section {
        padding: 4rem 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .clients-grid__card {
        min-height: 96px;
        padding: 1rem;
    }
}

@media (max-width: 400px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials redesign */
.tm-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

.tm-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 30%, rgba(0, 105, 179, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(18, 155, 219, 0.15) 0%, transparent 50%);
}

.tm-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent);
}

.tm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: tmOrbFloat 18s ease-in-out infinite;
}

.tm-orb--one {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -80px;
    background: rgba(0, 105, 179, 0.15);
}

.tm-orb--two {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -60px;
    background: rgba(18, 155, 219, 0.12);
    animation-delay: 6s;
}

@keyframes tmOrbFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -25px) scale(1.06);
    }
}

.tm-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tm-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tm-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.tm-title--accent {
    color: #129bdb;
}

.tm-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}

.tm-featured {
    position: relative;
    padding: 3rem 3.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-bottom: 2rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.tm-featured:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(18, 155, 219, 0.25);
}

.tm-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3rem;
    right: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0069b3, #129bdb, transparent);
    border-radius: 999px;
}

.tm-featured__quote-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 105, 179, 0.25), rgba(18, 155, 219, 0.15));
    border: 1px solid rgba(18, 155, 219, 0.2);
    color: #129bdb;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.tm-featured__quote {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.tm-featured__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.tm-featured__photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(18, 155, 219, 0.3);
    flex-shrink: 0;
}

.tm-featured__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0069b3, #129bdb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.tm-featured__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.tm-featured__meta {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.tm-featured__stars {
    color: #f59e0b;
    font-size: 0.85rem;
    display: flex;
    gap: 0.2rem;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tm-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.tm-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(18, 155, 219, 0.22);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.tm-card__accent {
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(18, 155, 219, 0.5), transparent);
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tm-card:hover .tm-card__accent {
    opacity: 1;
}

.tm-card__quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 155, 219, 0.1);
    border: 1px solid rgba(18, 155, 219, 0.15);
    color: #129bdb;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.tm-card:hover .tm-card__quote-icon {
    background: rgba(18, 155, 219, 0.18);
    transform: scale(1.08) rotate(-3deg);
}

.tm-card__quote {
    font-size: 0.93rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.tm-card__stars {
    color: #f59e0b;
    font-size: 0.75rem;
    display: flex;
    gap: 0.18rem;
    margin-bottom: 1.25rem;
}

.tm-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-card__photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(18, 155, 219, 0.2);
    flex-shrink: 0;
}

.tm-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0069b3, #129bdb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.tm-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.tm-card__meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

[data-theme="light-blue"] .tm-section {
    background: linear-gradient(135deg, #030f1e 0%, #0c2340 55%, #061828 100%);
}

@media (max-width: 991px) {
    .tm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-featured {
        padding: 2rem 2rem;
    }
}

@media (max-width: 767px) {
    .tm-section {
        padding: 4rem 0;
    }

    .tm-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tm-featured {
        padding: 1.75rem 1.5rem;
    }

    .tm-featured__quote {
        font-size: 1.05rem;
    }

    .tm-featured__stars {
        display: none;
    }
}

/* ═══════════════════════════════════
   FINAL FLOATING BUTTONS - DEFINITIVE
═══════════════════════════════════ */

/* Technologies section redesign */
#technologies.tech-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    overflow: hidden;
}

#technologies .tech-layout {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

[dir="ltr"] #technologies .tech-layout {
    flex-direction: row;
}

[dir="rtl"] #technologies .tech-layout {
    flex-direction: row;
}

[dir="ltr"] #technologies .tech-copy {
    flex: 0 0 42%;
}

[dir="ltr"] #technologies .tech-stack-board {
    flex: 1 1 58%;
}

[dir="rtl"] #technologies .tech-copy {
    flex: 0 0 42%;
}

[dir="rtl"] #technologies .tech-stack-board {
    flex: 1 1 58%;
}

#technologies .tech-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.42rem 1rem;
    border-radius: 999px;
    background: rgba(0, 105, 179, 0.08);
    border: 1px solid rgba(0, 105, 179, 0.12);
    color: #0069b3;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

[dir="rtl"] #technologies .tech-copy {
    text-align: right;
    justify-self: end;
}

[dir="rtl"] #technologies .tech-kicker {
    margin-left: auto;
    text-align: center;
}

#technologies .tech-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0c2340;
    text-align: left;
}

#technologies .tech-title span {
    display: block;
    color: #0069b3;
}

#technologies .tech-description {
    margin: 0;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(12, 35, 64, 0.68);
    text-align: left;
}

[dir="rtl"] #technologies .tech-title,
[dir="rtl"] #technologies .tech-description {
    text-align: right;
}

#technologies .tech-stack-board {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

#technologies .tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 0.85rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 105, 179, 0.1);
    box-shadow: 0 10px 24px rgba(12, 35, 64, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#technologies .tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 105, 179, 0.18);
    box-shadow: 0 16px 32px rgba(12, 35, 64, 0.1);
}

#technologies .tech-item span {
    display: none;
}

#technologies .tech-logo-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 56px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: none;
}

[data-theme="dark-blue"] #technologies.tech-section {
    background: linear-gradient(180deg, #071425 0%, #0c2340 100%);
}

[data-theme="dark-blue"] #technologies .tech-kicker {
    background: rgba(18, 155, 219, 0.12);
    border-color: rgba(18, 155, 219, 0.22);
    color: #8fd3ff;
}

[data-theme="dark-blue"] #technologies .tech-title {
    color: #ffffff;
}

[data-theme="dark-blue"] #technologies .tech-title span {
    color: #129bdb;
}

[data-theme="dark-blue"] #technologies .tech-description {
    color: rgba(255, 255, 255, 0.68);
}

[data-theme="dark-blue"] #technologies .tech-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

[data-theme="dark-blue"] #technologies .tech-item:hover {
    border-color: rgba(18, 155, 219, 0.24);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

@media (max-width: 991px) {
    #technologies .tech-layout {
        flex-direction: column !important;
        gap: 2rem;
    }

    #technologies .tech-copy {
        flex: none;
    }

    #technologies .tech-stack-board {
        flex: none;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    [dir="rtl"] #technologies .tech-copy {
        justify-self: stretch;
    }
}

@media (max-width: 767px) {
    #technologies .tech-layout {
        gap: 1.5rem;
    }

    #technologies .tech-stack-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    #technologies .tech-item {
        min-height: 88px;
        padding: 0.75rem;
    }

    #technologies .tech-logo-img {
        max-width: 120px;
        height: 50px;
        max-height: 50px !important;
    }
}

@media (max-width: 420px) {
    #technologies .tech-stack-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Contact kicker final size */
.contact-visual-overlay .section-kicker {
    margin-bottom: 0.7rem !important;
    padding: 0.16rem 0.5rem !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    letter-spacing: 0.08em !important;
}

/* Floating pill navbar */
.site-navbar {
    --site-navbar-offset: calc(env(safe-area-inset-top, 0px) + 108px);
    position: relative !important;
    top: calc(env(safe-area-inset-top, 0px) + 18px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1035 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 0;
    padding-bottom: 0;
    border: 0 !important;
    transition: none !important;
    transform: none !important;
}

.site-navbar .container {
    max-width: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: stretch;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-navbar__shell {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(12, 35, 64, 0.18);
    transition: none !important;
    transform: none !important;
}

.site-navbar .navbar-brand {
    order: 1;
    margin: 0;
    flex: 0 0 auto;
}

.site-navbar__links {
    order: 2;

    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.site-navbar__actions {
    order: 3;
    flex: 0 0 auto;
}

.site-navbar__links .nav-link {
    padding: 0.2rem 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
}

.site-navbar__links .nav-link:hover,
.site-navbar__links .nav-link.active {
    color: #ffffff;
}

[data-theme="dark-blue"] .site-navbar__shell {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

[data-theme="dark-blue"] .site-navbar__links .nav-link {
    color: #ffffff;
}

[data-theme="dark-blue"] .site-navbar__links .nav-link:hover,
[data-theme="dark-blue"] .site-navbar__links .nav-link.active {
    color: #ffffff;
}

[data-theme="light-blue"] .site-navbar__shell {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(12, 35, 64, 0.18);
}

[data-theme="light-blue"] .site-navbar__links .nav-link,
[data-theme="light-blue"] .site-navbar__links .nav-link:hover,
[data-theme="light-blue"] .site-navbar__links .nav-link.active {
    color: #ffffff;
}

.site-navbar .btn-outline-primary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.site-navbar .btn-outline-primary:hover,
.site-navbar .btn-outline-primary:focus {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
}

[data-theme="light-blue"] .site-navbar .site-logo-dark {
    display: block;
}

[data-theme="light-blue"] .site-navbar .site-logo-light {
    display: none;
}

[data-theme="dark-blue"] .site-navbar .site-logo-dark {
    display: none;
}

[data-theme="dark-blue"] .site-navbar .site-logo-light {
    display: block;
}

html,
body,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.navbar.site-navbar.sticky-top,
.navbar.site-navbar.sticky-top.navbar-over-hero,
.navbar.site-navbar.sticky-top.navbar-scrolled,
.site-navbar,
.site-navbar .container {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    background-clip: padding-box;
}

.site-navbar::before,
.site-navbar .container::before {
    display: none !important;
    content: none !important;
}

#hero {
    padding-top: var(--site-navbar-offset) !important;
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    .site-navbar {
        top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
        padding-top: 0;
    }

    .site-navbar {
        --site-navbar-offset: calc(env(safe-area-inset-top, 0px) + 92px);
    }

    .site-navbar__shell {
        width: 100%;
        gap: 0.75rem;
        padding: 0.7rem 0.9rem;
    }

    .site-navbar .navbar-brand {
        order: 1;
    }

    .site-navbar__actions {
        order: 2;
        margin-left: auto;
    }

    [dir="rtl"] .site-navbar .navbar-brand {
        order: 2;
    }

    [dir="rtl"] .site-navbar__actions {
        order: 1;
        margin-left: 0;
        margin-right: auto;
    }
}

/* Why Dojoon card number alignment */
[dir="ltr"] .wd-card__number {
    right: 1.75rem !important;
    left: auto !important;
}

[dir="rtl"] .wd-card__number {
    left: 1.75rem !important;
    right: auto !important;
}

@media (max-width: 767px) {
    [dir="ltr"] .wd-card__number {
        right: 1rem !important;
        left: auto !important;
    }

    [dir="rtl"] .wd-card__number {
        left: 1rem !important;
        right: auto !important;
    }
}

/* Desktop */
.wa-btn {
    left: 1.5rem !important;
    right: auto !important;
    bottom: 6rem !important;
}

.back-to-top {
    left: 1.5rem !important;
    right: auto !important;
    bottom: 1.5rem !important;
}

.wa-btn--rtl {
    left: auto !important;
    right: 1.5rem !important;
    bottom: 6rem !important;
}

.back-to-top--rtl {
    left: auto !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
}

/* Mobile */
@media (max-width: 767px) {
    .wa-btn {
        left: 1rem !important;
        right: auto !important;
        bottom: 5.5rem !important;
        width: 48px !important;
        height: 48px !important;
    }

    .back-to-top {
        left: 1rem !important;
        right: auto !important;
        bottom: 1rem !important;
    }

    .wa-btn--rtl {
        right: 1rem !important;
        left: auto !important;
        bottom: 5.5rem !important;
        width: 48px !important;
        height: 48px !important;
    }

    .back-to-top--rtl {
        right: 1rem !important;
        left: auto !important;
        bottom: 1rem !important;
    }
}

/* Navbar Fix */
.site-navbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1035 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 20px 0 !important;
    margin-top: 0 !important;
    transition: none !important;
    transform: none !important;
}

.site-navbar__shell {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease !important;
    transform: none !important;
}

[data-theme="dark-blue"] .site-navbar__shell {
    background: transparent;
    box-shadow: none;
}

[data-theme="light-blue"] .site-navbar__shell {
    background: transparent;
    box-shadow: none;
}

[data-theme="light-blue"] .site-navbar .site-logo-dark {
    display: none !important;
}

[data-theme="light-blue"] .site-navbar .site-logo-light {
    display: block !important;
}

.site-navbar__shell.scrolled,
.site-navbar__shell:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(12, 35, 64, 0.08) !important;
}

[data-theme="dark-blue"] .site-navbar__shell.scrolled,
[data-theme="dark-blue"] .site-navbar__shell:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
}

.site-navbar__links .nav-link,
[data-theme="light-blue"] .site-navbar__links .nav-link,
[data-theme="dark-blue"] .site-navbar__links .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.site-navbar__links .nav-link:hover,
.site-navbar__links .nav-link.active,
[data-theme="light-blue"] .site-navbar__links .nav-link:hover,
[data-theme="light-blue"] .site-navbar__links .nav-link.active,
[data-theme="dark-blue"] .site-navbar__links .nav-link:hover,
[data-theme="dark-blue"] .site-navbar__links .nav-link.active {
    color: #ffffff !important;
}

.site-navbar__links {
    gap: 40px;
}

.site-navbar .btn-outline-primary,
[data-theme="light-blue"] .site-navbar .btn-outline-primary,
[data-theme="dark-blue"] .site-navbar .btn-outline-primary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.site-navbar .btn-outline-primary:hover,
.site-navbar .btn-outline-primary:focus,
[data-theme="light-blue"] .site-navbar .btn-outline-primary:hover,
[data-theme="light-blue"] .site-navbar .btn-outline-primary:focus,
[data-theme="dark-blue"] .site-navbar .btn-outline-primary:hover,
[data-theme="dark-blue"] .site-navbar .btn-outline-primary:focus {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.16) !important;
}

#hero {
    padding-top: 0 !important;
}

@media (max-width: 991px) {
    .site-navbar {
        padding-top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
    }
}

@media (max-width: 767px) {
    .site-navbar {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .site-navbar__shell {
        gap: 0.65rem !important;
        padding: 0.7rem 0.8rem !important;
        border-radius: 999px !important;
    }

    .site-navbar__actions {
        gap: 0.45rem !important;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .site-navbar .btn {
        padding-left: 0.7rem !important;
        padding-right: 0.7rem !important;
        white-space: nowrap;
    }

    .site-navbar .navbar-brand {
        margin-right: 0.35rem;
        flex-shrink: 0;
    }

    [dir="rtl"] .site-navbar .navbar-brand {
        margin-left: 0.35rem;
        margin-right: 0;
    }

    .site-navbar__shell.scrolled,
    .site-navbar__shell:hover,
    [data-theme="dark-blue"] .site-navbar__shell.scrolled,
    [data-theme="dark-blue"] .site-navbar__shell:hover {
        border-radius: 999px !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE FIXES
   Laptop ≤1199px  |  ≤991px  |  ≤767px  |  ≤576px  |  ≤480px
══════════════════════════════════════════════════════════════ */

/* ── LAPTOP (≤1199px) ─────────────────────────────────────── */
@media (max-width: 1199px) {
    .svc-section, .wd-section, .tm-section, .pf-section {
        padding: 5.5rem 0;
    }

    .svc-item {
        grid-template-columns: 50px 60px 1fr 44px;
        padding: 1.75rem 1.5rem;
        gap: 1.25rem;
    }

    .wd-grid {
        gap: 1.25rem;
    }

    #technologies .tech-layout {
        gap: 2.5rem;
    }

    .tm-featured {
        padding: 2.5rem 3rem;
    }

    .contact-visual {
        min-height: 400px;
    }
}

@media (max-width: 991px) {
    .hero-cinematic {
        padding: 1.5rem;
    }

    .hero-cinematic__title {
        font-size: clamp(2rem, 4.8vw, 3rem) !important;
    }

    .dojoon-achievement-strip__item {
        padding: 2rem 2rem;
    }

    .wd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    .svc-item {
        grid-template-columns: 50px 60px 1fr 44px;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .news-card-img {
        height: 190px;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-visual {
        min-height: 300px;
    }

    .tm-featured {
        padding: 2rem 2.25rem;
    }

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

@media (max-width: 767px) {
    .hero-cinematic {
        padding: 1rem;
    }

    .hero-cinematic__title {
        font-size: clamp(1.85rem, 7vw, 2.6rem) !important;
        letter-spacing: -0.025em;
        margin-bottom: 1.25rem;
    }

    .hero-cinematic__badge {
        font-size: 0.62rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1.75rem;
        letter-spacing: 0.16em;
    }

    .hero-cinematic__line {
        margin-bottom: 2rem;
    }

    .hero-cinematic__scroll {
        font-size: 0.65rem;
    }

    .wd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .clients-grid__card {
        min-height: 96px;
    }

    .wd-card {
        padding: 1.75rem 1.5rem;
    }

    .dojoon-achievement-strip__item {
        padding: 1.5rem 1.5rem;
        gap: 1rem;
    }

    .dojoon-achievement-strip__icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .dojoon-achievement-strip__num {
        font-size: 1.65rem;
    }

    .dojoon-achievement-strip__label {
        font-size: 0.66rem;
    }

    .svc-item__icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 14px;
    }

    .svc-item__title {
        font-size: 1rem;
    }

    .svc-item__desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .tm-card {
        padding: 1.5rem 1.25rem;
    }

    .tm-card__quote {
        font-size: 0.88rem;
    }

    #news {
        padding: 4rem 0;
    }

    .news-card {
        border-radius: 18px;
    }

    .news-card-img {
        height: 175px;
    }

    .news-card-body {
        padding: 1.25rem;
    }

    .news-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .news-card-summary {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-visual {
        min-height: 260px;
        border-radius: 20px;
    }

    .contact-visual-overlay {
        padding: 1.75rem;
    }

    .contact-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .contact-copy {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .contact-form-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .hero-cinematic__title {
        font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
        margin-bottom: 1.1rem;
    }

    .hero-cinematic__badge {
        font-size: 0.58rem;
        padding: 0.35rem 0.8rem;
        letter-spacing: 0.14em;
        margin-bottom: 1.5rem;
    }

    .hero-cinematic__scroll span {
        display: none;
    }

    .dojoon-achievement-strip__item {
        padding: 1.25rem 1.25rem;
        gap: 0.85rem;
    }

    .dojoon-achievement-strip__num {
        font-size: 1.5rem;
    }

    .dojoon-achievement-strip__label {
        font-size: 0.62rem;
    }

    .dojoon-achievement-strip__icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .wd-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .wd-section {
        padding: 4rem 0;
    }

    .wd-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .wd-title {
        font-size: 2rem;
    }

    .wd-subtitle {
        font-size: 0.9rem;
    }

    .wd-header {
        margin-bottom: 3rem;
    }

    .wd-card__icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        border-radius: 14px;
        margin-bottom: 1.1rem;
    }

    .svc-section {
        padding: 4rem 0;
    }

    .svc-item {
        grid-template-columns: 40px 1fr 36px;
        padding: 1rem 0.85rem;
        gap: 0.75rem;
    }

    .svc-item__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .svc-item__desc {
        display: none;
    }

    .svc-item__arrow {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }

    .svc-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .tm-section {
        padding: 4rem 0;
    }

    .tm-featured {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .tm-featured__quote {
        font-size: 0.93rem;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }

    .tm-featured__author {
        gap: 0.65rem;
        padding-top: 1.1rem;
    }

    .tm-featured__photo, .tm-featured__avatar {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .tm-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .tm-card {
        padding: 1.25rem 1rem;
        border-radius: 18px;
    }

    .tm-card__quote {
        font-size: 0.85rem;
    }

    .tm-header {
        margin-bottom: 2.5rem;
    }

    .news-card {
        border-radius: 16px;
    }

    .news-card-img {
        height: 155px;
    }

    .news-card-body {
        padding: 1rem;
    }

    .news-card-title {
        font-size: 0.95rem;
    }

    .news-card-summary {
        font-size: 0.85rem;
    }

    .news-type-badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.65rem;
        margin-bottom: 0.65rem;
    }

    .contact-visual {
        min-height: 0;
        height: auto;
        border-radius: 16px;
    }

    .contact-visual-overlay {
        position: relative;
        padding: 1.25rem;
        min-height: 0;
    }

    .contact-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .contact-copy {
        font-size: 0.85rem;
    }

    .contact-form-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .contact-info-row {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-cinematic {
        padding: 0.75rem;
    }

    .hero-cinematic__title {
        font-size: clamp(1.45rem, 7.8vw, 1.9rem) !important;
        letter-spacing: -0.02em;
    }

    .hero-cinematic__badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.7rem;
    }

    .dojoon-achievement-strip__item {
        padding: 1rem 1rem;
        gap: 0.75rem;
    }

    .dojoon-achievement-strip__icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .dojoon-achievement-strip__num {
        font-size: 1.35rem;
    }

    .svc-item {
        grid-template-columns: 36px 1fr 32px;
        padding: 0.9rem 0.7rem;
        gap: 0.6rem;
    }

    .svc-item__icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .svc-item__arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .tm-featured__photo, .tm-featured__avatar {
        width: 38px;
        height: 38px;
    }

    .tm-featured {
        padding: 1.25rem 1rem;
    }

    .tm-card {
        padding: 1.1rem 0.9rem;
    }

    .news-card-img {
        height: 135px;
    }

    .contact-form-card {
        padding: 1.25rem 0.85rem;
    }

    .contact-visual {
        min-height: 200px;
    }
}

@media (max-width: 767px) {
    [dir="ltr"] .site-footer .footer-brand,
    [dir="ltr"] .site-footer .footer-links,
    [dir="ltr"] .site-footer .footer-contact,
    [dir="ltr"] .site-footer .footer-heading,
    [dir="ltr"] .site-footer .footer-description,
    [dir="ltr"] .site-footer .footer-bottom,
    [dir="ltr"] .site-footer .footer-links li,
    [dir="ltr"] .site-footer .footer-contact-value {
        text-align: left !important;
    }

    [dir="ltr"] .site-footer .footer-socials {
        justify-content: flex-start !important;
    }

    [dir="ltr"] .site-footer .footer-contact li {
        justify-content: flex-start !important;
        text-align: left !important;
        flex-direction: row !important;
        align-items: flex-start !important;
    }

    [dir="rtl"] .site-footer .footer-brand,
    [dir="rtl"] .site-footer .footer-links,
    [dir="rtl"] .site-footer .footer-contact,
    [dir="rtl"] .site-footer .footer-heading,
    [dir="rtl"] .site-footer .footer-description,
    [dir="rtl"] .site-footer .footer-bottom,
    [dir="rtl"] .site-footer .footer-links li,
    [dir="rtl"] .site-footer .footer-contact-value {
        text-align: right !important;
    }

    [dir="rtl"] .site-footer .footer-socials {
        justify-content: flex-end !important;
    }

    [dir="rtl"] .site-footer .footer-contact li {
        justify-content: flex-end !important;
        text-align: right !important;
        flex-direction: row-reverse !important;
        align-items: flex-start !important;
    }
}

.site-footer .footer-main--compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer .footer-socials--compact {
    flex-shrink: 0;
    align-items: center;
}

[dir="ltr"] .site-footer .footer-main--compact {
    flex-direction: row;
    direction: ltr;
}

[dir="ltr"] .site-footer .footer-main--compact .footer-brand {
    text-align: left;
}

[dir="ltr"] .site-footer .footer-main--compact .footer-socials--compact {
    justify-content: flex-end;
}

[dir="rtl"] .site-footer .footer-main--compact {
    flex-direction: row;
    direction: rtl;
}

[dir="rtl"] .site-footer .footer-main--compact .footer-brand {
    text-align: right;
}

[dir="rtl"] .site-footer .footer-main--compact .footer-socials--compact {
    justify-content: flex-start;
    direction: rtl;
}

[dir="rtl"] .site-footer .footer-main--compact .footer-description,
[dir="rtl"] .site-footer .footer-main--compact .footer-bottom {
    text-align: right !important;
}

@media (max-width: 767px) {
    .site-footer .footer-main--compact {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem;
    }

    [dir="rtl"] .site-footer .footer-main--compact {
        align-items: flex-end !important;
    }

    [dir="ltr"] .site-footer .footer-main--compact .footer-socials--compact {
        justify-content: flex-start !important;
    }

    [dir="rtl"] .site-footer .footer-main--compact .footer-socials--compact {
        justify-content: flex-end !important;
    }
}

/* Final contact overlay RTL fix */
[dir="rtl"] .contact-visual-overlay .mt-4.d-flex.flex-column.gap-3 {
    width: 100% !important;
    align-items: flex-end !important;
}

[dir="rtl"] .contact-visual-overlay .contact-info-row {
    width: fit-content !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row-reverse !important; /* ← رجّع row-reverse */
    justify-content: flex-end !important;
    align-items: flex-end !important; /* ← يحاذي كل شي لليمين */
    text-align: right !important;
    direction: rtl !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .contact-info-item {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    gap: 0.85rem !important;
    justify-content: flex-end !important;
    width: 100% !important;
}

[dir="rtl"] .contact-visual-overlay .contact-info-icon {
    order: 2 !important;
    flex: 0 0 42px !important;
}

[dir="rtl"] .contact-visual-overlay .contact-info-content {
    order: 1 !important;
    flex: 0 1 auto !important;
    text-align: right !important;
}

[dir="rtl"] .contact-visual-overlay .contact-info-content--ltr {
    text-align: left !important;
}

/* Final Why Dojoon layout */
.wd-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch;
}

.wd-card {
    height: 100%;
    padding: 1.25rem !important;
}

.wd-card__title {
    font-size: 1rem !important;
}

.wd-card__body {
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
}

.wd-card--cta {
    background: linear-gradient(135deg, #0069b3 0%, #005b99 50%, #003d6b 100%);
    border-color: rgba(255, 255, 255, 0.15);
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 2rem 2.5rem !important;
    min-height: 140px !important;
}

.wd-card--cta:hover {
    background: linear-gradient(135deg, #0077cc 0%, #0069b3 50%, #004d85 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
}

.wd-card__cta-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.25rem;
}

.wd-card__cta-copy {
    min-width: 0;
    text-align: left;
    flex: 1 1 auto;
}

.wd-card__cta-action {
    flex: 0 0 auto;
    text-align: right;
}

.wd-card__cta-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.85rem;
}

.wd-card__cta-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.45rem !important;
    color: #ffffff;
}

.wd-card__cta-subtitle {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.wd-card__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.wd-card__cta-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.wd-card__cta-btn i {
    transition: transform 0.3s ease;
}

.wd-card__cta-btn:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .wd-card--cta {
    direction: ltr;
}

[dir="rtl"] .wd-card__cta-inner {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    justify-content: space-between !important;
}

[dir="rtl"] .wd-card__cta-copy {
    text-align: right;
    margin: 0;
}

[dir="rtl"] .wd-card__cta-action {
    text-align: left;
    flex: 0 0 auto;
}

[dir="rtl"] .wd-card__cta-btn {
    flex-direction: row;
}

[dir="rtl"] .wd-card__cta-label,
[dir="rtl"] .wd-card__cta-btn {
    letter-spacing: 0;
}

@media (max-width: 767px) {
    .wd-grid {
        grid-template-columns: 1fr !important;
    }

    .wd-card--cta,
    [dir="rtl"] .wd-card--cta {
        padding: 1.5rem 1.25rem !important;
    }

    .wd-card__cta-inner {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    [dir="rtl"] .wd-card__cta-inner {
        display: flex !important;
        flex-direction: row-reverse !important;
        gap: 1rem !important;
    }
}

.dojoon-about__left {
    justify-self: center;
    align-self: center;
    width: min(100%, 720px);
}

@media (max-width: 991px) {
    .dojoon-about__left {
        width: 100%;
    }
}

/* Final unified section title size */
.wd-title,
.svc-title,
.clients-section__title,
.tm-title,
.section-title,
.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

@media (max-width: 767px) {
    .wd-title,
    .svc-title,
    .clients-section__title,
    .tm-title,
    .section-title,
    .contact-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
}
