/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


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

/* ── THEME ── */
[data-theme="light"] {
    --bg: #f7f8fc;
    --bg2: #ffffff;
    --bg3: #eef1f8;
    --bg4: #e4e8f4;
    --text: #0d1526;
    --text2: #3a4a6b;
    --muted: #7a8aaa;
    --border: #dde2f0;
    --border2: #c8d0e8;
    --blue: #1a5fff;
    --blue-l: #4d7fff;
    --blue-bg: #eef3ff;
    --blue-bd: #c2d0ff;
    --shadow: rgba(26, 95, 255, .10);
    --card-sh: 0 2px 16px rgba(13, 21, 38, .07);
    --nav-bg: rgba(247, 248, 252, .92);
}

[data-theme="dark"] {
    --bg: #060c18;
    --bg2: #0a1428;
    --bg3: #0f1f3d;
    --bg4: #162040;
    --text: #e8eeff;
    --text2: #a8b8d8;
    --muted: #5a6a8a;
    --border: #1a2a4a;
    --border2: #243560;
    --blue: #3a72ff;
    --blue-l: #6090ff;
    --blue-bg: rgba(58, 114, 255, .10);
    --blue-bd: rgba(58, 114, 255, .28);
    --shadow: rgba(58, 114, 255, .15);
    --card-sh: 0 2px 24px rgba(0, 0, 0, .30);
    --nav-bg: rgba(6, 12, 24, .90);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background .35s, color .35s
}

[data-theme="light"] body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, #b8c4e0 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .3;
    pointer-events: none;
}

[data-theme="dark"] body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(58, 114, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(58, 114, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
    min-height: 100vh
}

.page.active {
    display: block
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    height: 70px;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background .35s, border-color .35s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    cursor: pointer
}

.logo-mark {
    width: 37px;
    height: 37px;
    border-radius: 8px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    box-shadow: 0 4px 12px var(--shadow);
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1px;
    color: var(--text)
}

.logo-text em {
    color: var(--blue);
    font-style: normal
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--blue)
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

/* Theme toggle */
.theme-toggle {
    width: 50px;
    height: 27px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: background .3s, border-color .3s;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--blue)
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 2px 6px var(--shadow);
}

[data-theme="dark"] .toggle-knob {
    transform: translateX(23px)
}

.nav-cta {
    padding: 8px 20px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px var(--shadow);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--blue-l);
    transform: translateY(-1px)
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 190;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0 6%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
}

.mobile-menu.open {
    max-height: 360px;
    padding: 20px 6% 28px
}

@media(max-width:600px) {
    .mobile-menu {
        padding: 0 4%
    }

    .mobile-menu.open {
        padding: 20px 4% 28px
    }
}

@media(max-width:480px) {
    .mobile-menu {
        padding: 0 16px
    }

    .mobile-menu.open {
        padding: 20px 16px 24px
    }
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-menu ul a {
    display: block;
    padding: 11px 0;
    color: var(--text2);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: color .2s;
}

.mobile-menu ul a:last-child {
    border-bottom: none
}

.mobile-menu ul a:hover {
    color: var(--blue)
}

.mobile-menu .mob-cta {
    margin-top: 16px;
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--blue);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

/* ── SHARED ── */
.pt {
    padding-top: 110px
}

section {
    padding: 90px 6%;
    position: relative;
    z-index: 1
}

.wrap {
    max-width: 1200px;
    margin: 0 auto
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.5px;
    margin-bottom: 12px;
}

.sec-title .bl {
    color: var(--blue)
}

.sec-sub {
    font-size: 15.5px;
    color: var(--text2);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 48px
}

.btn-p {
    padding: 13px 28px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 4px 18px var(--shadow);
}

.btn-p:hover {
    background: var(--blue-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--shadow)
}

.btn-o {
    padding: 13px 28px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-o:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px)
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

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

@keyframes pulse {

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

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s, transform .6s
}

.fade-in.vis {
    opacity: 1;
    transform: translateY(0)
}

.slide-in {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s, transform .5s
}

.slide-in.vis {
    opacity: 1;
    transform: translateX(0)
}

.scale-in {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .5s, transform .5s
}

.scale-in.vis {
    opacity: 1;
    transform: scale(1)
}

/* ────────────────────────────────────────
        HOME PAGE
            ──────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 6% 70px;
    position: relative;
    overflow: hidden
}

[data-theme="light"] .hero-geo {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 48px;
    background: linear-gradient(135deg, #dce8ff 0%, #eaf0ff 60%, #f0f4ff 100%);
    border: 1px solid #c8d8ff;
    rotate: 15deg;
    z-index: 0;
}

[data-theme="dark"] .hero-geo {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 114, 255, .10) 0%, transparent 70%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 660px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 8px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--blue);
    margin-bottom: 24px;
    animation: fadeUp .7s ease both;
}

.pdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s infinite
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 6.5vw, 90px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    animation: fadeUp .7s .1s ease both;
}

.hero h1 .bl {
    color: var(--blue)
}

.hero h1 .tag-h {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 0 14px;
    border-radius: 8px;
    font-style: normal;
}

.hero-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.75;
    max-width: 550px;
    margin-bottom: 36px;
    animation: fadeUp .7s .2s ease both
}

.hero-btns {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both
}

.hero-trust {
    margin-top: 48px;
    animation: fadeUp .7s .4s ease both
}

.hero-trust p {
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px
}

.trust-chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.chip {
    padding: 5px 13px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text2);
}

/* Stats */
.stats-bar {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transition: background .35s;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 38px 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
}

.stat-num .suf {
    font-size: 28px;
    color: var(--blue);
    margin-top: 6px
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 7px
}

/* Service cards */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.svc-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--card-sh);
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s, background .35s;
}

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

.svc-card:hover::after {
    transform: scaleX(1)
}

.svc-card:hover {
    border-color: var(--blue-bd);
    box-shadow: 0 8px 32px var(--shadow);
    transform: translateY(-3px)
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.svc-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px
}

.svc-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
    transition: gap .2s;
}

.svc-link:hover {
    gap: 9px
}

/* QC section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.qc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px
}

.qc-row {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color .35s;
}

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

.qc-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    min-width: 42px;
    color: var(--blue-bd);
    transition: color .25s
}

.qc-row:hover .qc-n {
    color: var(--blue)
}

.qc-row h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px
}

.qc-row p {
    font-size: 13px;
    color: var(--muted)
}

.why-panel {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: var(--card-sh);
    transition: background .35s, border-color .35s
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: var(--text2)
}

.fcheck {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--blue)
}

/* Countries */
.c-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px;
    margin-top: 38px
}

.c-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: var(--card-sh);
    cursor: default;
    transition: border-color .25s, box-shadow .25s, transform .25s, background .35s;
}

.c-card:hover {
    border-color: var(--blue-bd);
    box-shadow: 0 6px 20px var(--shadow);
    transform: translateY(-4px)
}

.c-flag {
    font-size: 24px;
    margin-bottom: 6px
}

.c-name {
    font-size: 12px;
    color: var(--text2);
    font-weight: 500
}

/* Pricing banner */
.pricing-box {
    background: var(--blue);
    border-radius: 20px;
    padding: 56px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none
}

.pricing-box::after {
    content: '';
    position: absolute;
    right: 80px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none
}

.pl {
    position: relative;
    z-index: 1
}

.pl .tag {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .25);
    color: #fff
}

.pl h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 10px
}

.pl p {
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    max-width: 390px;
    margin-bottom: 26px
}

.btn-w {
    padding: 12px 26px;
    background: #fff;
    color: var(--blue);
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .15);
    margin-right: 10px
}

.btn-w:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2)
}

.btn-gh {
    padding: 12px 26px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s
}

.btn-gh:hover {
    border-color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .08)
}

.rate-box {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 30px 42px;
    text-align: center;
    position: relative;
    z-index: 1
}

.rf {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.rn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 4px 0
}

.rp {
    font-size: 13px;
    color: rgba(255, 255, 255, .6)
}

/* ────────────────────────────────────────
            ABOUT PAGE
            ──────────────────────────────────────── */
.about-hero {
    padding: 130px 6% 80px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    transition: background .35s, border-color .35s
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -1px;
    margin-bottom: 20px
}

.about-hero p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 28px
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 10px
}

.asi {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--card-sh)
}

.asi-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--blue)
}

.asi-l {
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-top: 4px
}

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

.tl-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border)
}

.tl-item:last-child {
    border-bottom: none
}

.tl-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--blue);
    min-width: 60px;
    padding-top: 2px
}

.tl-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px
}

.tl-content p {
    font-size: 13.5px;
    color: var(--muted)
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px
}

.val-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--card-sh);
    transition: transform .25s, border-color .25s
}

.val-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue-bd)
}

.val-icon {
    font-size: 28px;
    margin-bottom: 12px
}

.val-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px
}

.val-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px
}

.cert-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--card-sh)
}

.cert-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.cert-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px
}

.cert-card p {
    font-size: 12.5px;
    color: var(--muted)
}

/* ────────────────────────────────────────
        SERVICES PAGE
        ──────────────────────────────────────── */
.svc-detail-hero {
    padding: 130px 6% 70px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    transition: background .35s, border-color .35s;
    text-align: center
}

.svc-detail-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -1px;
    margin-bottom: 20px
}

.svc-detail-hero p {
    font-size: 16.5px;
    color: var(--text2);
    max-width: 580px;
    margin: 0 auto
}

.svc-detail-block {
    padding: 80px 6%;
    border-bottom: 1px solid var(--border);
    transition: border-color .35s
}

.svc-detail-block:last-of-type {
    border-bottom: none
}

.svc-detail-block.alt {
    background: var(--bg3);
    transition: background .35s
}

.sdb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.sdb-inner.rev {
    direction: rtl
}

.sdb-inner.rev>* {
    direction: ltr
}

.sdb-visual {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    box-shadow: var(--card-sh);
    transition: background .35s, border-color .35s
}

.sdb-big-icon {
    font-size: 80px;
    text-align: center
}

.sdb h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px
}

.sdb p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 20px
}

.sdb-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px
}

.sdb-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text2)
}

.sdb-bullets li::before {
    content: '→';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0
}

/* ────────────────────────────────────────
        PROJECTS PAGE
        ──────────────────────────────────────── */
.proj-hero, .service-hero {
    padding: 130px 6% 60px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    text-align: center;
    transition: background .35s, border-color .35s
}

.proj-hero h1, .service-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 18px
}

.proj-hero p, .service-hero p {
    font-size: 16px;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
    margin-top: 10px
}

.filter-btn {
    padding: 8px 20px;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    color: var(--text2);
    cursor: pointer;
    transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.proj-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-sh);
    transition: transform .25s, box-shadow .25s, border-color .25s, background .35s;
}

.proj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--shadow);
    border-color: var(--blue-bd)
}

.proj-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-bg);
    border-bottom: 1px solid var(--border);
    font-size: 52px;
    transition: background .35s, border-color .35s;
}

.proj-body {
    padding: 22px 20px
}

.proj-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--blue);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 7px
}

.proj-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px
}

.proj-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.proj-meta {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    flex-wrap: wrap
}

.pm {
    font-size: 12px;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 5px
}

.pm::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-bd);
    flex-shrink: 0
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0
}

.testi-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--card-sh);
    transition: background .35s, border-color .35s
}

.testi-stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 14px
}

.testi-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.testi-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text)
}

.testi-role {
    font-size: 12px;
    color: var(--muted)
}

/* ────────────────────────────────────────
        CONTACT PAGE
        ──────────────────────────────────────── */
.contact-hero {
    padding: 130px 6% 70px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    transition: background .35s, border-color .35s
}

.contact-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px
}

.contact-hero p {
    font-size: 16px;
    color: var(--text2);
    max-width: 500px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 52px;
    align-items: start
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ci-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color .35s
}

.ci-item:last-child {
    border-bottom: none
}

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.ci-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 5px
}

.ci-val {
    font-size: 14.5px;
    color: var(--text);
    font-weight: 500
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: var(--card-sh);
    transition: background .35s, border-color .35s
}

.contact-form-wrap h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px
}

.contact-form-wrap .sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    letter-spacing: .3px
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 15px;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: border-color .2s, background .35s, color .35s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--bg2)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted)
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%237a8aaa' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    color-scheme: dark
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 4px 18px var(--shadow);
    margin-top: 4px
}

.form-submit:hover {
    background: var(--blue-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--shadow)
}

.form-submit:active {
    transform: translateY(0)
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px;
}

.form-success .check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-bg);
    border: 2px solid var(--blue-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px
}

.form-success p {
    font-size: 14px;
    color: var(--muted)
}

/* CTA bar */
.cta-bar {
    background: var(--bg3);
    padding: 90px 6%;
    text-align: center;
    border-top: 1px solid var(--border);
    transition: background .35s, border-color .35s
}

.cta-bar h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px
}

.cta-bar h2 .bl {
    color: var(--blue)
}

.cta-bar p {
    font-size: 15.5px;
    color: var(--text2);
    max-width: 460px;
    margin: 0 auto 32px
}

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

/* ── FOOTER ── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 6% 34px;
    position: relative;
    z-index: 1;
    transition: background .35s, border-color .35s
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 40px
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 13px 0 20px;
    max-width: 265px
}

.footer-social {
    display: flex;
    gap: 9px
}

.s-btn {
    width: 33px;
    height: 33px;
    border-radius: 7px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    color: var(--muted);
    text-decoration: none;
    transition: all .2s
}

.s-btn:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    transition: color .2s
}

.footer-col ul a:hover {
    color: var(--blue)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    transition: border-color .35s
}

.footer-bottom p {
    font-size: 12px;
    color: var(--muted)
}

.cert-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-bd);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--blue)
}

/* ── RESPONSIVE ── */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

@media(max-width:1200px) {
    nav {
        padding: 0 4%
    }

    section {
        padding: 80px 4%
    }

    .wrap {
        padding: 0 4px
    }

    .hero-geo {
        opacity: .5
    }

    .hero {
        padding: 100px 4% 70px
    }

    .stats-bar {
        padding: 0 4%
    }

    .pricing-box {
        padding: 48px 40px
    }

    .rate-box {
        padding: 26px 36px
    }

    .rn {
        font-size: 56px
    }
}

@media(max-width:960px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

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

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item {
        border-right: none
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-hero-inner {
        grid-template-columns: 1fr
    }

    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .sdb-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .sdb-inner.rev {
        direction: ltr
    }

    .sdb-visual {
        min-height: 220px;
        padding: 28px
    }

    .sdb-big-icon {
        font-size: 64px
    }

    .proj-grid {
        grid-template-columns: 1fr 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .values-grid {
        grid-template-columns: 1fr 1fr
    }

    .cert-grid {
        grid-template-columns: 1fr 1fr
    }

    .pricing-box {
        padding: 38px 30px;
        flex-direction: column;
        text-align: center
    }

    .pl {
        text-align: center
    }

    .pl p {
        margin-left: auto;
        margin-right: auto
    }

    .pl>div {
        justify-content: center;
        flex-wrap: wrap
    }

    .cta-bar {
        padding: 70px 4%
    }

    footer {
        padding: 50px 4% 28px
    }
}

@media(max-width:768px) {
    .hero-geo {
        display: none
    }

    .hero-inner {
        max-width: 100%
    }

    .hero h1 {
        font-size: clamp(42px, 10vw, 52px)
    }

    .hero-desc {
        font-size: 15px
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px
    }

    .hero-btns .btn-p,
    .hero-btns .btn-o {
        width: 100%;
        justify-content: center
    }

    .trust-chips {
        justify-content: flex-start
    }

    .stat-num {
        font-size: 42px
    }

    .stat-num .suf {
        font-size: 22px
    }

    .sec-title {
        font-size: clamp(28px, 5vw, 40px)
    }

    .sec-sub {
        margin-bottom: 36px;
        font-size: 14px
    }

    .btn-p,
    .btn-o {
        padding: 12px 22px;
        font-size: 14px
    }

    .svc-card {
        padding: 22px 20px
    }

    .svc-card h3 {
        font-size: 18px
    }

    .why-panel {
        padding: 26px 22px
    }

    .qc-row {
        padding: 16px 0
    }

    .qc-n {
        font-size: 32px;
        min-width: 36px
    }

    .pricing-box {
        padding: 32px 24px
    }

    .pl h2 {
        font-size: 32px
    }

    .rate-box {
        padding: 24px 28px
    }

    .rn {
        font-size: 48px
    }

    .rf,
    .rp {
        font-size: 11px
    }

    .filter-bar {
        justify-content: flex-start;
        margin-bottom: 32px
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px
    }

    .proj-thumb {
        height: 160px;
        font-size: 44px
    }

    .proj-body {
        padding: 18px 16px
    }

    .proj-body h4 {
        font-size: 17px
    }

    .contact-form-wrap {
        padding: 28px 24px
    }

    .contact-form-wrap h3 {
        font-size: 22px
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
        min-height: 44px
    }

    .form-submit {
        padding: 14px;
        min-height: 48px;
        font-size: 15px
    }

    .cta-bar h2 {
        font-size: clamp(30px, 5vw, 42px)
    }

    .footer-col h4 {
        font-size: 13px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 22px
    }

    .footer-bottom .cert-tag {
        justify-content: center
    }
}

@media(max-width:600px) {
    nav {
        padding: 0 4%;
        height: 64px
    }

    .nav-cta {
        display: none
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 11px
    }

    .logo-text {
        font-size: 16px
    }

    .mobile-menu {
        top: 64px
    }

    section {
        padding: 60px 4%
    }

    .hero {
        padding: 88px 4% 50px
    }

    .about-hero,
    .svc-detail-hero,
    .service-hero,
    .proj-hero,
    .contact-hero {
        padding: 88px 4% 40px
    }

    .svc-detail-hero h1,
    .proj-hero h1, .service-hero h1 {
        font-size: clamp(36px, 9vw, 44px)
    }

    .contact-hero h1 {
        font-size: clamp(34px, 8vw, 42px)
    }

    .about-hero h1 {
        font-size: clamp(34px, 8vw, 44px)
    }

    .svc-grid {
        grid-template-columns: 1fr
    }

    .c-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .c-card {
        padding: 14px 8px
    }

    .c-flag {
        font-size: 20px
    }

    .c-name {
        font-size: 11px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .proj-grid {
        grid-template-columns: 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .about-stats-mini {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .asi {
        padding: 14px
    }

    .asi-n {
        font-size: 28px
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .cert-grid {
        grid-template-columns: 1fr
    }

    .cert-card {
        padding: 20px;
        flex-direction: column;
        text-align: center
    }

    .cert-badge-icon {
        margin: 0 auto
    }

    .cta-bar {
        padding: 60px 4%
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto
    }

    .cta-btns .btn-p,
    .cta-btns .btn-o {
        width: 100%;
        justify-content: center
    }

    .about-hero .hero-btns {
        flex-direction: column
    }

    .about-hero .hero-btns .btn-p,
    .about-hero .hero-btns .btn-o {
        width: 100%;
        justify-content: center
    }
}

@media(max-width:480px) {
    nav {
        padding: 0 16px
    }

    section {
        padding: 48px 16px
    }

    .wrap {
        max-width: 100%
    }

    .hero {
        padding: 80px 16px 40px
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -.5px
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 10px 4px 6px
    }

    .hero-desc {
        font-size: 14px
    }

    .stats-bar {
        grid-template-columns: 1fr;
        padding: 0 16px
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 28px 16px
    }

    .stat-item:last-child {
        border-bottom: none
    }

    .stat-num {
        font-size: 36px
    }

    .stat-num .suf {
        font-size: 20px
    }

    .tag {
        font-size: 10px;
        padding: 3px 10px
    }

    .sec-title {
        font-size: 28px
    }

    .sec-sub {
        font-size: 13px;
        margin-bottom: 28px
    }

    .svc-card {
        padding: 20px 16px
    }

    .why-panel {
        padding: 22px 18px
    }

    .qc-n {
        font-size: 28px;
        min-width: 32px
    }

    .qc-row h4 {
        font-size: 15px
    }

    .pricing-box {
        padding: 24px 18px;
        border-radius: 16px
    }

    .pl h2 {
        font-size: 28px
    }

    .pl p {
        font-size: 14px
    }

    .btn-w,
    .btn-gh {
        margin-bottom: 8px;
        margin-right: 0 !important;
        width: 100%;
        justify-content: center
    }

    .rate-box {
        padding: 20px 24px
    }

    .rn {
        font-size: 42px
    }

    .about-hero,
    .svc-detail-hero,
    .service-hero,
    .proj-hero,
    .contact-hero {
        padding: 80px 16px 32px
    }

    .about-stats-mini {
        grid-template-columns: 1fr
    }

    .tl-item {
        flex-direction: column;
        gap: 8px;
        padding: 18px 0
    }

    .tl-year {
        min-width: auto
    }

    .filter-bar {
        gap: 8px
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px
    }

    .proj-thumb {
        height: 140px;
        font-size: 40px
    }

    .proj-body h4 {
        font-size: 16px
    }

    .contact-form-wrap {
        padding: 22px 18px
    }

    .contact-form-wrap h3 {
        font-size: 20px
    }

    .ci-item {
        padding: 18px 0
    }

    .footer-brand p {
        max-width: 100%
    }

    footer {
        padding: 40px 16px 24px
    }

    .cta-bar {
        padding: 48px 16px
    }

    .cta-bar h2 {
        font-size: 26px
    }
}

/* Custom css */
.nav-links ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

/* .proj-hero {
    background-image: url('/wp-content/uploads/2026/03/Stadium.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; 
} */

.proj-thumb.service img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.proj-thumb.blog img {
    width: 100%;
    object-fit: cover;
    height: 180px;
}
.blog-page.proj-body {
    padding: 12px 20px;
}
.proj-thumb.service {
    padding: 22px 20px;
    background: white;
    border-bottom: unset;
}

main.type-post.status-publish{
    margin-top: 60px;
}