
/* =========================
   GLOBAL SECTION SYSTEM (BASE LAYER)
========================= */

/*==============================================
GLOBAL PAPER SYSTEM
==============================================*/


/* ==========================================
   NOBO ICON SYSTEM
========================================== */

.icon{
    width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.icon img{
    width:100%;
    height:100%;
    display:block;
}

/* ==========================================
   SIZES
========================================== */


.section {
    padding: 100px 20px;
    position: relative;
}

.section-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* consistent heading system */
.section h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    margin-bottom: 14px;
    color: var(--blue-primary);
}

.section p {
    color: #4a5568;
    line-height: 1.7;
    max-width: 860px;
}

/* center variant */
.section.center {
    text-align: center;
}

.section.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:

        linear-gradient(
            135deg,
            rgba(31,95,175,.08),
            rgba(212,175,55,.12)
        );

    border:
        1px solid rgba(212,175,55,.15);
        transition: .35s ease;
}


.why-card:hover .feature-icon{
    transform:
        translateY(-6px)
        rotate(-4deg);
}

/* =========================
   GLOBAL GRID SYSTEM
========================= */

.grid.auto {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(280px, 1fr)
    );
    gap: 28px;
    align-items: stretch;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   CSS VARIABLES (THEME)
========================= */
:root{

    /* Brand */
    --blue-primary:#0f172a;
    --blue-primary-soft:#17233c;
    --blue-accent:#1e3a8a;
    --blue-accent-strong:#2563eb;

    --gold-accent:#d4af37;
    --gold-accent-soft:#f4e3a3;

    /* Surfaces */
    --white:#ffffff;
    --gray-50:#f8fafc;
    --gray-100:#f1f5f9;
    --gray-border:#e5e7eb;

    /* Typography */
    --text-main:#1f2937;
    --text-muted:#64748b;

    /* Radius */
    --radius-sm:10px;
    --radius-md:14px;
    --radius-lg:20px;
    --radius-xl:30px;

    /* Shadows */
    --shadow-sm:0 8px 20px rgba(15,23,42,.06);
    --shadow-md:0 16px 40px rgba(15,23,42,.10);
    --shadow-lg:0 28px 70px rgba(15,23,42,.14);

    /* Animation */
    --transition:.30s ease;

}

html {
    scroll-behavior: smooth;
}
html,
body {
    overflow-x: hidden;
}
body {
    min-height: 100%;
}

/* =========================
   BASE
========================= */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.75;
    font-size: 15px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

main {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

::selection {
    background: rgba(212, 175, 55, 0.22);
    color: var(--blue-primary);
}

/* =========================
   SHARED UTILITIES
========================= */
.section-shell,
.services-overview,
.site-footer .footer-inner {
    max-width: var(--content);
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   ACCESSIBILITY
========================= */
.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    background: var(--blue-primary);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 3000;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: fixed;
    top: 0;
    z-index: 1200;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.logo-block.hidden {
    display: none;
}

.logo-block img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--blue-primary);
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.name-mobile {
    display: none;
}

/* =========================
   NAVIGATION
========================= */
.main-nav {
    display: flex;
    align-items: center;
    
}

.main-nav a {
    text-decoration: none;
    color: var(--blue-primary);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 8px 10px;
    border-radius: 10px;
    transition: color 0.25s ease, background-color 0.25s ease;
    cursor: pointer;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--gold-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background-color: rgba(30, 58, 138, 0.035);
    color: var(--blue-accent);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
    color: var(--blue-accent);
    background-color: rgba(30, 58, 138, 0.045);
    font-weight: 700;
}

.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

/* =========================
   NAV OVERLAY
========================= */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1000;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    cursor: pointer;
    z-index: 1300;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hamburger:hover {
    background: rgba(15, 23, 42, 0.08);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: var(--blue-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   SHARED INNER HERO
========================= */
.hero,
.page-hero {
    position: relative;
    padding: 120px 24px 100px;
    text-align: center;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 26%),
        linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-primary-soft) 45%, var(--blue-accent) 100%);
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.12));
    pointer-events: none;
}

.hero > *,
.page-hero > * {
    position: relative;
    z-index: 1;
}

.hero h1,
.page-hero h1 {
    max-width: 960px;
    margin: 0 auto 20px;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
}

.hero p,
.page-hero p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.04rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

/* =========================
   BUTTONS
========================= */


.cta-secondary {
    background: transparent;
    color: var(--blue-accent);
    border: 1.5px solid rgba(30, 58, 138, 0.2);
    box-shadow: none;
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
    background: var(--blue-accent);
    color: var(--white);
    border-color: var(--blue-accent);
}

/* =========================
   SHARED CTA SHINE
========================= */
.hero-cta-group .cta-primary,
.hero-cta-group .cta-secondary,
.why-cta .btn-primary,
.programme-btn-primary,
.programme-btn-secondary,
.card-buttons a:last-child,
.paper-help .btn-primary,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary,
.programme-cta .btn-primary,
.rfq-form .cta-button,
.button-group .secondary-button,
.search-card button,
.download-certificate-btn {
    position: relative;
    overflow: hidden;
}

.hero-cta-group .cta-primary::before,
.hero-cta-group .cta-secondary::before,
.why-cta .btn-primary::before,
.programme-btn-primary::before,
.card-buttons a:last-child::before,
.paper-help .btn-primary::before,
.hero-buttons .btn-primary::before,
.programme-cta .btn-primary::before,
.rfq-form .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform: skewX(-25deg);
    transition: left .75s ease;
    pointer-events: none;
}

.programme-btn-secondary::before,
.hero-buttons .btn-secondary::before,
.button-group .secondary-button::before,
.search-card button::before,
.download-certificate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: left .75s ease;
    pointer-events: none;
}

.hero-cta-group .cta-primary:hover::before,
.hero-cta-group .cta-secondary:hover::before,
.why-cta .btn-primary:hover::before,
.programme-btn-primary:hover::before,
.programme-btn-secondary:hover::before,
.card-buttons a:last-child:hover::before,
.paper-help .btn-primary:hover::before,
.hero-buttons .btn-primary:hover::before,
.hero-buttons .btn-secondary:hover::before,
.programme-cta .btn-primary:hover::before,
.rfq-form .cta-button:not(:disabled):hover::before,
.button-group .secondary-button:hover::before,
.search-card button:not(:disabled):hover::before,
.download-certificate-btn:not(:disabled):hover::before {
    left: 160%;
}



/* ==========================================
   FOOTER
========================================== */

.site-footer{

    position:relative;

    overflow:hidden;

    padding:90px 0 35px;

    color:white;

    background:
        linear-gradient(
            135deg,
            #08192F 0%,
            #0E2D55 55%,
            #123E74 100%
        );

}

/* ==========================================
   BACKGROUND PATTERN
========================================== */

.site-footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        url("../assets/images/training-pattern.svg")
        center center /
        900px
        no-repeat;

    opacity:.025;

    pointer-events:none;

}

.site-footer::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-250px;

    right:-220px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(212,175,55,.12),
            transparent 70%
        );

    pointer-events:none;

}

/* ==========================================
   GRID
========================================== */

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        1.2fr;

    gap:60px;

    margin-bottom:70px;

}

/* ==========================================
   BRAND
========================================== */

.footer-brand{

    max-width:420px;

}

.footer-logo{

    width:180px;

    margin-bottom:28px;

}

.footer-brand h3{

    margin-bottom:24px;

    font-size:2rem;

    font-weight:800;

    line-height:1.2;

    color:white;

}

.footer-brand p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

}

/* ==========================================
   COLUMNS
========================================== */

.footer-column h4{

    margin-bottom:22px;

    color:white;

    font-size:1rem;

    font-weight:700;

    position:relative;

}

.footer-column h4::after{

    content:"";

    display:block;

    width:36px;

    height:3px;

    margin-top:10px;

    border-radius:999px;

    background:var(--gold-accent);

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column a{

    margin-bottom:14px;

    color:rgba(255,255,255,.72);

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:white;

    transform:translateX(6px);

}

.footer-column p{

    margin-bottom:16px;

    color:rgba(255,255,255,.72);

    line-height:1.7;

}

/* ==========================================
   ACCREDITATION
========================================== */

.footer-accreditation{

    position:relative;

    z-index:2;

    margin-bottom:50px;

    padding:32px;

    text-align:center;

    border-radius:24px;

    background:
        rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

}

.footer-accreditation p{

    margin-bottom:24px;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:.15em;

    text-transform:uppercase;

    color:#FFE7A0;

}

.footer-logos{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;

}

.footer-logos img{

    height:54px;

    opacity:.65;

    filter:grayscale(100%);

    transition:.35s;

}

.footer-logos img:hover{

    opacity:1;

    filter:none;

    transform:translateY(-4px);

}

/* ==========================================
   BOTTOM
========================================== */

.footer-bottom{

    position:relative;

    z-index:2;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

    color:rgba(255,255,255,.62);

    font-size:.92rem;

}

.footer-mission{

    color:#FFE7A0;

    font-weight:600;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

.footer-grid{

grid-template-columns:
1fr
1fr
1fr;

gap:50px;

}

.footer-brand{

grid-column:1/-1;

max-width:100%;

}

}

@media(max-width:768px){

.site-footer{

padding:70px 0 30px;

}

.footer-grid{

grid-template-columns:1fr;

gap:45px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-logos{

gap:30px;

}

.footer-logo{

width:150px;

}

}


/* =========================
   HERO ENTRANCE ANIMATION
========================= */
.hero-inner > * {
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.6s ease-out forwards;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   ACCESSIBILITY: REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-inner > *,
    .reveal,
    .reveal.active {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .service-card,
    .cta-button,
    .main-nav,
    .hamburger span {
        transition: none !important;
    }

    .closing-actions .cta-button::before,
    .closing-actions .secondary-button::before,
    .cta-paper .btn-primary::before,
    .location-details .cta-button::before,
    .button-group .cta-button::before,
    .hero-cta-group .cta-primary::before,
    .hero-cta-group .cta-secondary::before,
    .why-cta .btn-primary::before,
    .programme-btn-primary::before,
    .programme-btn-secondary::before,
    .card-buttons a:last-child::before,
    .paper-help .btn-primary::before,
    .hero-buttons .btn-primary::before,
    .hero-buttons .btn-secondary::before,
    .programme-cta .btn-primary::before,
    .rfq-form .cta-button::before,
    .button-group .secondary-button::before,
    .search-card button::before,
    .download-certificate-btn::before {
        left: -120% !important;
        transition: none !important;
    }
}

/* =========================
   GLOBAL MOTION SYSTEM
========================= */

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.stagger-item,
.stack-card {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease,
        box-shadow 0.35s ease;
    will-change: transform, opacity;
}

.reveal,
.reveal-up,
.stagger-item {
    transform: translateY(34px);
}

.reveal-left {
    transform: translateX(-34px);
}

.reveal-right {
    transform: translateX(34px);
}

.reveal-scale,
.stack-card {
    transform: translateY(28px) scale(0.96);
    filter: blur(6px);
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.stagger-item.active,
.stack-card.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.stagger-group .stagger-item,
.stagger-group .service-card,
.stagger-group .identity-card,
.stagger-group .approach-card,
.stagger-group .gallery-item,
.stagger-group .audience-block,
.stagger-group .core-service-item {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-group .stagger-item.active,
.stagger-group .service-card.active,
.stagger-group .identity-card.active,
.stagger-group .approach-card.active,
.stagger-group .gallery-item.active,
.stagger-group .audience-block.active,
.stagger-group .core-service-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Layered card feel */
.stack-card {
    position: relative;
}

.stack-card.active {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Optional soft parallax class */
.parallax-soft {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(
        90deg,
        var(--gold-accent),
        var(--blue-accent-strong)
    );
    z-index: 2000;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

/* =========================
   MOBILE RESPONSIVE SYSTEM
========================= */
@media (max-width: 1200px) {
    .site-header {
        padding: 0 1.5rem;
    }

    .main-nav a {
        font-size: 13.5px;
        padding: 8px 9px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: inline-flex;
    }

    .site-header {
        justify-content: space-between;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 88px;
        right: 18px;
        width: min(320px, calc(100vw - 32px));
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        overscroll-behavior: contain;

        flex-direction: column;
        align-items: stretch;
        
        padding: 22px;

        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
        z-index: 1100;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        margin-left: 0;
        padding: 12px 14px;
        font-size: 0.97rem;
        border-radius: 12px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a.active,
    .main-nav a[aria-current="page"] {
        background: rgba(30, 58, 138, 0.08);
    }

    .name-desktop {
        display: none;
    }

    .name-mobile {
        display: inline;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 78px;
        padding: 0 1rem;
    }

    .logo-block img {
        height: 52px;
    }

    .hero,
    .page-hero {
        padding: 92px 20px 78px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero p,
    .page-hero p {
        font-size: 0.98rem;
    }

    .hero-cta-group {
        width: 100%;
        align-items: flex-start;
    }

    .services-overview {
        padding: 72px 20px;
    }

    .services-overview::before {
        left: 20px;
        right: 20px;
    }

    .services-overview h2 {
        font-size: 1.75rem;
    }

    .services-overview > p {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }

    .service-grid {
        gap: 20px;
    }

    .service-card {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .site-footer {
        padding: 60px 20px 28px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

@media (max-width: 480px) {
    .main-nav {
        top: 88px;
        right: 12px;
        width: calc(100vw - 24px);
    }

    .hero,
    .page-hero {
        padding: 84px 16px 70px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .hero p,
    .page-hero p {
        font-size: 0.95rem;
    }

    .services-overview {
        padding: 64px 16px;
    }

    .services-overview::before {
        left: 16px;
        right: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 22px 18px;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
    }

}



/* =========================
   GLOBAL CARD SYSTEM
========================= */

.card,
.service-card {
    background: #ffffff;

    border: 1px solid rgba(
        15,
        23,
        42,
        0.08
    );

    border-radius: 18px;

    padding: 32px;

    box-shadow:
        0 10px 30px rgba(
            15,
            23,
            42,
            0.05
        );

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

    display: flex;
    flex-direction: column;

    height: 100%;
}

.card:hover,
.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(
        212,
        175,
        55,
        0.4
    );

    box-shadow:
        0 22px 50px rgba(
            15,
            23,
            42,
            0.10
        );
}

.card h3,
.service-card h3 {

    font-size: 1.15rem;

    color: var(--blue-primary);

    margin-bottom: 14px;

    line-height: 1.4;
}

.card p,
.service-card p {

    color: var(--text-muted);

    line-height: 1.8;
}


/* =========================
   GLOBAL INTERACTION SYSTEM
========================= */
.card,
.btn,
.cta-button {
    will-change: transform;
}


/* link hover consistency */
a {
    transition: color 0.2s ease;
}

p a:not(.btn):not(.cta-button):hover {
    color: var(--blue-accent);
}

/*==================================================
GLOBAL NOBO NAVBAR LAYOUT FIX
==================================================*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 2rem;

    z-index: 5000;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.04);
}


/*==================================================
LOGO AREA
==================================================*/

.logo-block {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    min-width: max-content;
}

.logo-block img {
    flex-shrink: 0;
}





/*==================================================
NAVIGATION LINKS
==================================================*/

.main-nav a {
    white-space: nowrap;
}


/*==================================================
MOBILE
==================================================*/

@media (max-width: 992px) {

    .site-header {
        padding: 0 1.25rem;
    }

    .main-nav {
        padding-left: 0;
    }
}

/*==================================================
GLOBAL SCROLL PROGRESS BAR
==================================================*/

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    z-index: 9999;

    transform: scaleX(0);
    transform-origin: left center;

    background: linear-gradient(
        90deg,
        var(--gold-accent),
        #f0cf63,
        #3b82f6
    );

    box-shadow:
        0 2px 12px rgba(212, 175, 55, 0.25);

    pointer-events: none;

    will-change: transform;
}

