/* =====================================================
   NIARA SOFTECH
   GLOBAL DESIGN SYSTEM
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    /* Background */
    --bg-primary: #03070d;
    --bg-secondary: #050c15;
    --bg-tertiary: #07111c;

    /* Cards */
    --card-bg: rgba(7, 17, 28, 0.72);
    --card-border: rgba(125, 211, 252, 0.12);

    /* Brand */
    --sky: #38bdf8;
    --sky-light: #7dd3fc;
    --sky-soft: rgba(56, 189, 248, 0.12);
    --sky-glow: rgba(83, 203, 255, 0.949);

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #d0deee;
    --text-muted: #94a3b8;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);

    /* Layout */
    --container-width: 1240px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    /* Transition */
    --transition: 0.35s ease;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
     font-size: 16px;
}


body {

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(56, 189, 248, 0.055),
            transparent 28%
        ),
        var(--bg-primary);

    color: var(--text-primary);

    line-height: 1.6;

    overflow-x: hidden;
}



/* =====================================================
   PARTICLE
===================================================== */

/* =====================================================
   GLOBAL PREMIUM PARTICLES
===================================================== */

/* =====================================================
   BASIC ELEMENTS
===================================================== */

a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin-inline: auto;

}


/* =====================================================
   PAGE LOADER
===================================================== */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--bg-primary);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-logo {

    font-size: 26px;

    font-weight: 700;

    letter-spacing: 4px;

}


.loader-logo span {

    color: var(--sky);

    margin-left: 6px;

}


.loader-line {

    width: 140px;

    height: 2px;

    background: rgba(255,255,255,0.08);

    overflow: hidden;

}


.loader-line span {

    display: block;

    width: 40%;

    height: 100%;

    background: var(--sky);

    box-shadow:
        0 0 12px var(--sky);

    animation: loaderAnimation 1.2s infinite ease-in-out;

}


@keyframes loaderAnimation {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }

}


/* =====================================================
   CURSOR GLOW
===================================================== */

.cursor-glow {

    position: fixed;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.055),
            transparent 65%
        );

    transform:
        translate(-50%, -50%);

    z-index: 0;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;

}


.site-header.scrolled {

    background:
        rgba(3, 7, 13, 0.78);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   BRAND
===================================================== */

.brand {

    display: flex;

    align-items: baseline;

    gap: 7px;

    position: relative;

}


.brand-main {

    font-size: 28px;

    font-weight: 700;

    letter-spacing: 2px;

}


.brand-sub {

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 2px;

    color: var(--sky);

}

/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}


/* =====================================================
   NORMAL LINK
===================================================== */

.nav-link {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 400;

    text-decoration: none !important;

    transition: color 0.3s ease;
}


/* =====================================================
   HOVER
===================================================== */

.nav-link:hover {
    color: #0fb5e7 !important;
}


/* =====================================================
   ACTIVE LINK
===================================================== */

.nav-link.active {
    color: #38bdf8 !important;
    font-weight: 600 !important;
}


/* =====================================================
   UNDERLINE - HIDDEN BY DEFAULT
===================================================== */

.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -2px;

    width: 0;
    height: 2px;

    background: #38bdf8;

    border-radius: 50px;

    transform: translateX(-50%);

    opacity: 0;

    transition:
        width 0.3s ease,
        opacity 0.3s ease;

}


/* =====================================================
   HOVER UNDERLINE
===================================================== */

.nav-link:hover::after {
    width: 18px;
    opacity: 1;
}


/* =====================================================
   ACTIVE UNDERLINE
===================================================== */

.nav-link.active::after {
    width: 22px;
    opacity: 1;

    box-shadow:
        0 0 8px rgba(56, 189, 248, 0.7);
}
/* =====================================================
   FORCE ACTIVE NAVIGATION
   MUST BE AT THE VERY BOTTOM OF CSS
===================================================== */

.navbar .nav-links > a.nav-link.active {
    color: #38bdf8 !important;
    font-weight: 600 !important;
}

.navbar .nav-links > a.nav-link.active::after {
    content: "" !important;

    position: absolute !important;

    left: 50% !important;
    bottom: -2px !important;

    width: 22px !important;
    height: 2px !important;

    background: #38bdf8 !important;

    border-radius: 50px !important;

    transform: translateX(-50%) !important;

    opacity: 1 !important;
    visibility: visible !important;

    box-shadow:
        0 0 10px rgba(56, 189, 248, 0.7) !important;
}
/* =====================================================
   CTA
===================================================== */

.nav-cta {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 11px 18px;

    border: 1px solid rgba(56, 189, 248, 0.28);

    border-radius: 50px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    text-decoration: none;

    background: rgba(56, 189, 248, 0.055);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--card-bg);

    cursor: pointer;

    padding: 10px;

}


.mobile-menu-btn span {

    display: block;

    height: 2px;

    width: 100%;

    margin: 5px 0;

    background: var(--text-primary);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


/* =====================================================
   PLACEHOLDER SECTIONS
===================================================== */

.placeholder-section {

    min-height: 70vh;

    display: flex;

    align-items: center;

    padding: 140px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.04);

}


.placeholder-section h1 {

    max-width: 850px;

    font-size:
        clamp(48px, 7vw, 92px);

    line-height: 1.03;

    letter-spacing: -3px;

    margin-top: 20px;

}


.placeholder-section h1 span {

    color: var(--sky);

}


.placeholder-section h2 {

    max-width: 750px;

    margin-top: 18px;

    font-size:
        clamp(38px, 5vw, 68px);

    line-height: 1.1;

    letter-spacing: -2px;

}


.placeholder-section p {

    max-width: 650px;

    margin-top: 24px;

    color: var(--text-secondary);

    font-size: 17px;

}


/* =====================================================
   SECTION KICKER
===================================================== */

.section-kicker {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--sky);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

}


.section-kicker::before {

    content: "";

    width: 24px;

    height: 1px;

    background: var(--sky);

}


/* =====================================================
   FOOTER
===================================================== */



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {

        display: none;

    }


    .mobile-menu-btn {

        display: block;

    }


    .navbar {

        height: 76px;

    }


    .container {

        width:
            min(
                calc(100% - 32px),
                var(--container-width)
            );

    }

}


@media (max-width: 600px) {

    .placeholder-section {

        padding: 110px 0;

    }


    .placeholder-section h1 {

        letter-spacing: -2px;

    }


    .placeholder-section h2 {

        letter-spacing: -1.5px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }

}
/* ================================
   MOBILE NAVIGATION
================================ */

.mobile-nav {
    display: none;
}


/* ================================
   MOBILE VIEW
================================ */
/* ========================================
   NIARA MOBILE MENU BUTTON
======================================== */
/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.niara-mobile-toggle {
    display: none;
}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 768px) {

    /* ---------------------------------------------
       NAVBAR
    --------------------------------------------- */

    .navbar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* ---------------------------------------------
       HIDE DESKTOP NAVIGATION
    --------------------------------------------- */

    .nav-links,
    .nav-cta {
        display: none !important;
    }


    /* ---------------------------------------------
       MOBILE HAMBURGER
    --------------------------------------------- */

    .niara-mobile-toggle {
        position: relative;

        display: flex !important;

        flex-direction: column;
        justify-content: center;
        align-items: flex-end;

        width: 40px;
        height: 40px;

        padding: 0;
        margin: 0;

        gap: 5px;

        background: transparent;
        border: none;
        outline: none;

        cursor: pointer;

        z-index: 10001;
    }


    .niara-mobile-toggle span {
        display: block;

        width: 24px;
        height: 2px;

        background: #ffffff;

        border-radius: 10px;

        opacity: 1;
        visibility: visible;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            width 0.3s ease;
    }


    /* ---------------------------------------------
       HAMBURGER → X
    --------------------------------------------- */

    .niara-mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .niara-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .niara-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* ---------------------------------------------
       MOBILE MENU
    --------------------------------------------- */

    .mobile-nav {

        position: fixed;

        top: 75px;
        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;

        padding: 12px;

        background: rgba(5, 14, 23, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 16px;

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 10000;
    }


    /* OPEN MENU */

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    /* ---------------------------------------------
       MOBILE LINKS
    --------------------------------------------- */

    .mobile-nav-link {

        display: block;

        padding: 14px 12px;

        color: rgba(255, 255, 255, 0.82);

        text-decoration: none;

        font-size: 15px;
        font-weight: 500;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

        transition:
            color 0.25s ease,
            padding-left 0.25s ease;
    }


    .mobile-nav-link:hover {
        color: #38bdf8;
        padding-left: 16px;
    }


    .mobile-nav-link.active {
        color: #38bdf8;
    }


    /* ---------------------------------------------
       MOBILE CONTACT BUTTON
    --------------------------------------------- */

    .mobile-nav-cta {

        display: flex;

        align-items: center;
        justify-content: space-between;

        margin-top: 14px;

        padding: 14px 16px;

        color: #ffffff;

        text-decoration: none;

        background: #38bdf8;

        border-radius: 10px;

        font-size: 15px;
        font-weight: 600;

        transition:
            background 0.25s ease,
            transform 0.25s ease;
    }


    .mobile-nav-cta:hover {
        background: #22aee5;
        transform: translateY(-1px);
    }


    .mobile-nav-cta span {
        font-size: 20px;
        line-height: 1;
    }

}
/* =====================================================
   HERO SECTION
===================================================== */
/* =========================================================
   NIARA SOFTECH — PREMIUM HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 90px;

    padding:
        120px 5vw
        70px;

    overflow: hidden;

}


/* =========================================================
   VERY SUBTLE BACKGROUND
========================================================= */

.hero-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -280px;
    top: 50%;

    transform:
        translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(56,189,248,.065),
            transparent 68%
        );

    pointer-events: none;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 5;

    max-width: 650px;

}


/* =========================================================
   KICKER
========================================================= */

.hero-kicker {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 16px;

    letter-spacing: 2px;

    font-weight: 700;

}


.kicker-line {

    width: 35px;

    height: 1px;

    background:
        var(--sky);

    box-shadow:
        0 0 12px
        rgba(56,189,248,.5);

}


/* =========================================================
   TITLE
========================================================= */

.hero-title {

    margin: 0;

    max-width: 650px;

    font-size:
        clamp(58px, 6.4vw, 96px);

    line-height:
        .94;

    letter-spacing:
        -5px;

    font-weight:
        600;

    color:
        var(--text-primary);

}


.hero-changing-word {

    display: block;

    color:
        var(--sky);

    text-shadow:
        0 0 35px
        rgba(56,189,248,.20);

    transition:
        opacity .35s ease,
        transform .35s ease;

}


.hero-changing-word.word-exit {

    opacity: 0;

    transform:
        translateY(18px);

}


.hero-changing-word.word-enter {

    animation:
        heroWordEnter
        .5s ease
        forwards;

}


@keyframes heroWordEnter {

    from {

        opacity: 0;

        transform:
            translateY(-18px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {

    max-width: 500px;

    margin:
        30px 0 0;

    font-size:
        15px;

    line-height:
        1.85;

    color:
        var(--text-secondary);

}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 36px;

}


.hero-btn {

    min-height: 49px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 18px;

    transition:
        all .3s ease;

}


.hero-btn.primary {

    color:
        #06131e;

    background:
        var(--sky);

    box-shadow:
        0 10px 30px
        rgba(56,189,248,.12);

}


.hero-btn.primary span {

    font-size: 16px;
    

    transition:
        transform .3s ease;

}


.hero-btn.primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 16px 40px
        rgba(56,189,248,.22);

}


.hero-btn.primary:hover span {

    transform:
        translate(3px,-3px);

}


.hero-btn.secondary {

    color:
        rgba(255,255,255,.68);

    border:
        1px solid
        rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.018);

}


.hero-btn.secondary:hover {

    color:
        white;

    border-color:
        rgba(56,189,248,.3);

    background:
        rgba(56,189,248,.025);

}


/* =========================================================
   LEFT BOTTOM INFO
========================================================= */

.hero-bottom-info {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 62px;

    font-family:
        monospace;

    font-size: 14px;

    letter-spacing: 1.2px;

    color:
        rgba(165, 173, 194, 0.736);

}


.hero-bottom-info i {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background:
        var(--sky);

    opacity: .55;

}


/* =========================================================
   RIGHT PERFORMANCE
========================================================= */

.hero-performance {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 640px;

    margin-left: auto;

}


/* =========================================================
   HEADER
========================================================= */

.performance-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 15px;

    margin-bottom: 27px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

}


.performance-title {

    display: flex;

    align-items: center;

    gap: 10px;

    font-family:
        monospace;

    font-size: 16px;

    letter-spacing: 1.6px;

    color:
        rgb(251, 253, 255);

}


.header-line {

    width: 28px;

    height: 1px;

    background:
        var(--sky);

}

.performance-live {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight:700;
    color: rgba(21, 255, 247, 0.75);
  
    animation: liveBlink 1.2s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}


/* =========================================================
   PROGRESS METRICS
========================================================= */

.progress-metrics {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


/* =========================================================
   PROGRESS METRIC
========================================================= */

.progress-metric {

    width: 68%;

    padding-bottom: 23px;

    border-bottom:
        1px solid
        rgba(255,255,255,.065);

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        progressIn
        .7s
        cubic-bezier(.22,1,.36,1)
        forwards;

}


/* =========================================================
   PROGRESS LABEL
========================================================= */

.progress-label {

    font-family:
        monospace;

    font-size: 14px;

    letter-spacing: 1px;

    color:
        rgb(146, 149, 151);

}


.progress-metric:nth-child(1) {
    animation-delay: .25s;
}

.progress-metric:nth-child(2) {
    animation-delay: .4s;
}

.progress-metric:nth-child(3) {
    animation-delay: .55s;
}


/* =========================================================
   TOP
========================================================= */


.progress-top strong {

    font-size: 32px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: -1.5px;

    color:
        rgba(255,255,255,.94);

}


.progress-top strong span {

    margin-left: 2px;

    font-size: 14px;

    color:
        var(--sky);

}


/* =========================================================
   BAR
========================================================= */

.progress-track {

    position: relative;

    width: 100%;

    height: 5px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.07);

}


/* =========================================================
   BAR
========================================================= */


.progress-fill {

    display: block;

    width: var(--progress);

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            rgba(56,189,248,.35),
            var(--sky)
        );

    box-shadow:
        0 0 14px
        rgba(56,189,248,.35);

    transform:
        scaleX(0);

    transform-origin:
        left;

    animation:
        progressBar
        1.3s
        cubic-bezier(.22,1,.36,1)
        .7s
        forwards;

}


/* =========================================================
   BAR META
========================================================= */

.progress-meta {

    display: flex;

    justify-content: space-between;

    margin-top: 9px;

    font-family:
        monospace;

    font-size: 14px;

    letter-spacing: .8px;

    color:
        rgba(3, 227, 235, 0.858);

}


/* =========================================================
   SMALL METRICS
========================================================= */

.small-metrics {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 22px;

}


/* =========================================================
   SMALL CARD
========================================================= */

.small-metric {

    position: relative;

    min-height: 126px;

    padding: 14px;

    border:
        1px solid
        rgba(255,255,255,.075);

    background:
        rgba(255,255,255,.018);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        smallMetricIn
        .65s
        cubic-bezier(.22,1,.36,1)
        forwards;

}


.small-metric:nth-child(1) {
    animation-delay: .7s;
}

.small-metric:nth-child(2) {
    animation-delay: .8s;
}

.small-metric:nth-child(3) {
    animation-delay: .9s;
}


.small-metric:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(56,189,248,.25);

    background:
        rgba(56,189,248,.025);

}


/* =========================================================
   CARD TOP
========================================================= */

.small-metric-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;

}








.small-metric:hover .small-arrow {

    color:
        var(--sky);

    transform:
        translate(2px,-2px);

}


/* =========================================================
   CARD LABEL
========================================================= */
.small-label {

    display: block;

    margin-bottom: 10px;

    font-family:
        monospace;

    font-size: 14px;

    letter-spacing: .8px;

    color:
        rgb(146, 149, 151);

}


/* =========================================================
   CARD VALUE
========================================================= */
.small-value {

    display: block;

    font-size:
        30px;

    line-height:
        1;

    font-weight:
        500;

    letter-spacing:
        -1px;

    color:
        rgba(255,255,255,.94);

}


.small-value span {

    margin-left:
        2px;

    font-size:
        16px;

    color:
        var(--sky);

}

/* =========================================================
   UPTIME ACCENT
========================================================= */

.uptime-box {

    background:
        linear-gradient(
            145deg,
            rgba(56,189,248,.035),
            rgba(255,255,255,.012)
        );

}


.uptime-box::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 45%;

    height: 1px;

    background:
        var(--sky);

    box-shadow:
        0 0 10px
        rgba(56,189,248,.4);

}


/* =========================================================
   STATUS
========================================================= */

.performance-status {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    font-family:
        monospace;

    font-size: 12px;

    letter-spacing: 1px;

    color:
        rgb(146, 149, 151);

}


.status-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        #38bdf8;

    box-shadow:
        0 0 9px
        rgba(56,189,248,.8);

    animation:
        statusPulse
        1.8s
        infinite;

}


.status-year {

    margin-left:
        auto;

    color:
        rgba(255,255,255,.15);

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes progressIn {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes progressBar {

    from {

        transform:
            scaleX(0);

    }

    to {

        transform:
            scaleX(1);

    }

}


@keyframes smallMetricIn {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes statusPulse {

    0%,
    100% {

        opacity: .4;

    }

    50% {

        opacity: 1;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-section {

        grid-template-columns:
            1fr;

        gap:
            80px;

        padding:
            120px 30px
            70px;

    }


    .hero-content {

        max-width:
            700px;

        margin:
            auto;

        text-align:
            center;

    }


    .hero-kicker {

        justify-content:
            center;

    }


    .hero-description {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .hero-actions {

        justify-content:
            center;

    }


    .hero-bottom-info {

        justify-content:
            center;

    }


    .hero-performance {

        max-width:
            700px;

        margin:
            auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .hero-section {

        padding:
            105px 18px
            60px;

        gap:
            60px;

    }


    .hero-title {

        font-size:
            clamp(47px,14vw,70px);

        letter-spacing:
            -4px;

    }


    .hero-description {

        font-size:
            14px;

    }


    .hero-actions {

        flex-direction:
            column;

        width:
            100%;

        max-width:
            280px;

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .hero-btn {

        width:
            100%;

    }


    .hero-bottom-info {

        margin-top:
            45px;

        gap:
            9px;

    }


    .small-metrics {

        grid-template-columns:
            repeat(2,1fr);

    }


    .small-metric {

        min-height:
            115px;

    }


    .uptime-box {

        grid-column:
            1 / -1;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero-section {

        padding:
            100px 15px
            55px;

    }


    .progress-top strong {

        font-size:
            25px;

    }


    .small-metric {

        padding:
            12px;

    }


    .small-value {

        font-size:
            24px;

    }

}
/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    position: relative;

    padding: 0px 0 0px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(3, 7, 13, 0.35)
        );

}


/* =====================================================
   ABOUT HEADING
===================================================== */

.about-heading {

    max-width: 1000px;

}


.about-heading h2 {

    margin-top: 14px;

    max-width: 1000px;

    font-size:
        clamp(22px, 8vw, 58px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 500;

}


.about-heading h2 span {

    color: var(--sky);

}


/* =====================================================
   ABOUT GRID
===================================================== */

.about-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.5fr;

    gap: 0px;

    margin-top: 50px;

    padding-top: 15px;

    border-top:
        1px solid var(--border);

}


/* =====================================================
   ABOUT INTRO
===================================================== */

.about-intro {

    position: relative;

}




.about-intro h3 {

    max-width: 350px;

    font-size:
        clamp(30px, 3vw, 46px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    font-weight: 500;

}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {

    max-width: 720px;

}


.about-content p {

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 22px;

}


.about-content .about-lead {

    color: var(--text-secondary);

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 28px;

}


/* =====================================================
   ABOUT LINK
===================================================== */

.about-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 14px;

    color: var(--text-primary);

    font-size: 16px;

    font-weight: 500;

}


.about-link span {

    color: var(--sky);

    font-size: 18px;

    transition:
        transform 0.3s ease;

}


.about-link:hover span {

    transform:
        translateX(5px);

}


/* =====================================================
   STATISTICS
===================================================== */

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 70px;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.stat-item {

    min-height: 190px;

    padding: 42px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right:
        1px solid var(--border);

}


.stat-item:last-child {

    border-right: none;

}


.stat-item strong {

    color: var(--text-primary);

    font-size:
        clamp(40px, 4vw, 60px);

    line-height: 1;

    font-weight: 500;

    letter-spacing: -2px;

}


.stat-item span {

    margin-top: 14px;

    color: var(--text-muted);

    font-size: 12px;

    letter-spacing: 0.5px;

}


/* =====================================================
   ABOUT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

        margin-top: 75px;

    }


    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-item:nth-child(2) {

        border-right: none;

    }


    .stat-item:nth-child(-n+2) {

        border-bottom:
            1px solid var(--border);

    }

}


@media (max-width: 600px) {

    .about-section {

        padding: 10px 0;

    }


    .about-heading h2 {

        letter-spacing: -2px;

    }


    .about-grid {

        margin-top: 60px;

    }


    .about-content .about-lead {

        font-size: 17px;

    }


    .about-stats {

        grid-template-columns: 1fr;

        margin-top: 80px;

    }


    .stat-item {

        min-height: 145px;

        border-right: none;

        border-bottom:
            1px solid var(--border);

    }


    .stat-item:last-child {

        border-bottom: none;

    }

}
/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
    position: relative;
    padding: 15px 0;
}


/* =====================================================
   SERVICES HEADING
===================================================== */

.services-heading {
    max-width: 850px;
}

.services-heading h2 {
    margin-top: 32px;

    font-size: clamp(22px, 8vw, 58px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 500;
}

.services-heading h2 span {
    color: var(--sky);
}

.services-heading p {
    max-width: 600px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   SERVICES PANEL
===================================================== */

.services-panel {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 25px;

    overflow: hidden;

    border:
        1px solid rgba(148, 163, 184, 0.20);

    border-radius: 22px;

    background:
        rgba(7, 17, 28, 0.72);

    backdrop-filter: blur(10px);

}


/* =====================================================
   SERVICE BOX
===================================================== */

.service-box {

    position: relative;

    min-height: 390px;

    padding: 38px 40px 32px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-right:
        1px solid rgba(148, 163, 184, 0.13);

    border-bottom:
        1px solid rgba(148, 163, 184, 0.13);

    background:
        rgba(8, 18, 29, 0.35);

    transition:
        background 0.45s ease,
        transform 0.45s ease;
}


/* =====================================================
   REMOVE GRID BORDERS
===================================================== */

/* 3rd card */

.service-box:nth-child(3) {
    border-right: none;
}


/* 4th, 5th, 6th are bottom row */

.service-box:nth-child(4),
.service-box:nth-child(5),
.service-box:nth-child(6) {
    border-bottom: none;
}


/* 6th card */

.service-box:nth-child(6) {
    border-right: none;
}


/* =====================================================
   SUBTLE TECH GLOW
===================================================== */

.service-box::before {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    top: 40px;

    right: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.10),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.5s ease,
        transform 0.7s ease;

    pointer-events: none;
}


.service-box:hover::before {

    opacity: 1;

    transform: scale(1);

}


.service-box:hover {

    background:
        rgba(11, 27, 42, 0.70);

}


/* =====================================================
   TOP AREA
===================================================== */

.service-box-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}


/* =====================================================
   SERVICE CODE
===================================================== */

.service-code {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 62px;

    height: 62px;

    padding: 0 15px;

    border:
        1px solid rgba(148, 163, 184, 0.18);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.015);

    color: var(--sky);

    font-family: monospace;

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 2px;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.service-box:hover .service-code {

    border-color:
        rgba(56, 189, 248, 0.45);

    background:
        rgba(56, 189, 248, 0.055);

    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.08);

    transform:
        translateY(-3px);

}


/* =====================================================
   CARD CONTENT
===================================================== */

.service-box-content {

    position: relative;

    z-index: 2;

    margin-top: 34px;

}


.service-box-content h3 {

    max-width: 300px;

    color: var(--text-primary);

    font-size: 21px;

    line-height: 1.45;

    letter-spacing: -0.5px;

    font-weight: 600;

}


.service-box-content p {

    max-width: 300px;

    margin-top: 16px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.85;
}


/* =====================================================
   TECHNOLOGY TAGS
===================================================== */

.service-tags {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;

    padding-top: 25px;

    padding-right: 55px;
}


.service-tags span {

    display: inline-flex;

    align-items: center;

    padding: 7px 10px;

    border:
        1px solid rgba(148, 163, 184, 0.07);

    border-radius: 3px;

    background:
        rgba(148, 163, 184, 0.06);

    color:
        rgba(251, 252, 253, 0.72);

    font-family: monospace;

    font-size: 12px;

    letter-spacing: 0.7px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.service-box:hover .service-tags span {

    color:
        rgba(125, 211, 252, 0.95);

    border-color:
        rgba(56, 189, 248, 0.12);

    background:
        rgba(56, 189, 248, 0.055);

}


/* =====================================================
   ARROW BUTTON
===================================================== */

.service-arrow {

    position: absolute;

    right: 32px;

    bottom: 32px;

    z-index: 5;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(148, 163, 184, 0.18);

    border-radius: 50%;

    color: var(--text-muted);

    font-size: 17px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.service-box:hover .service-arrow {

    color: #021019;

    background: var(--sky);

    border-color: var(--sky);

    transform:
        translate(3px, -3px);

    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.20);

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   STAGGERED CARD ANIMATION
===================================================== */

.service-box:nth-child(1) {
    transition-delay: 0.05s;
}

.service-box:nth-child(2) {
    transition-delay: 0.12s;
}

.service-box:nth-child(3) {
    transition-delay: 0.19s;
}

.service-box:nth-child(4) {
    transition-delay: 0.26s;
}

.service-box:nth-child(5) {
    transition-delay: 0.33s;
}

.service-box:nth-child(6) {
    transition-delay: 0.40s;
}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1000px) {

    .services-panel {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .service-box:nth-child(2) {

        border-right: none;

    }


    .service-box:nth-child(3) {

        border-right:
            1px solid rgba(148, 163, 184, 0.13);

    }


    .service-box:nth-child(4) {

        border-right: none;

    }


    .service-box:nth-child(3),
    .service-box:nth-child(4) {

        border-bottom:
            1px solid rgba(148, 163, 184, 0.13);

    }


    .service-box:nth-child(5),
    .service-box:nth-child(6) {

        border-bottom: none;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 650px) {

    .services-section {

        padding: 19px 0;

    }


    .services-heading h2 {

        letter-spacing: -2px;

    }


    .services-panel {

        grid-template-columns: 1fr;

        margin-top: 55px;

        border-radius: 17px;

    }


    .service-box {

        min-height: 310px;

        padding: 30px 25px;

        border-right: none !important;

        border-bottom:
            1px solid rgba(148, 163, 184, 0.13) !important;

    }


    .service-box:last-child {

        border-bottom: none !important;

    }


    .service-box-content {

        margin-top: 28px;

    }


    .service-box-content h3 {

        font-size: 20px;

    }


    .service-box-content p {

        font-size: 12px;

    }


    .service-code {

        min-width: 56px;

        height: 56px;

    }


    .service-arrow {

        right: 25px;

        bottom: 25px;

    }

}
/* =====================================================
   PORTFOLIO SECTION
===================================================== */
/* =====================================================
   NIARA SOFTECH
   PREMIUM PORTFOLIO
===================================================== */

.portfolio-section {

    position: relative;

    padding:
        40px 5vw
        40px;

    overflow: hidden;

    background:
        var(--bg-primary, #071525);

}


/* =====================================================
   SUBTLE BACKGROUND
===================================================== */

.portfolio-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: 5%;
    left: -400px;

    background:
        radial-gradient(
            circle,
            rgba(56,189,248,.045),
            transparent 70%
        );

    pointer-events: none;

}


.portfolio-container {

    position: relative;

    z-index: 2;

    max-width:
        1400px;

    margin:
        0 auto;

}


/* =====================================================
   HEADER
===================================================== */

.portfolio-header {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        60px;

    margin-bottom:
        65px;

}


.portfolio-kicker {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    margin-bottom:
        22px;

    font-family:
        monospace;

    font-size:
        10px;

    letter-spacing:
        2px;

    color:
        var(--sky, #38bdf8);

}


.portfolio-kicker span {

    width:
        28px;

    height:
        1px;

    background:
        var(--sky, #38bdf8);

}


.portfolio-heading {

    margin:
        0;

    max-width:
        700px;

    font-size:
        clamp(48px, 5vw, 76px);

    line-height:
        .95;

    letter-spacing:
        -4px;

    font-weight:
        500;

    color:
        rgba(255,255,255,.94);

}


.portfolio-heading span {

    color:
        var(--sky, #38bdf8);

}


.portfolio-intro {

    max-width:
        430px;

    margin:
        0 0 5px;

    font-size:
        15px;

    line-height:
        1.8;

    color:
        rgba(255,255,255,.42);

}


/* =====================================================
   FEATURED PROJECT
===================================================== */

.portfolio-featured {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(360px, .9fr);

    min-height:
        510px;

    border:
        1px solid
        rgba(255,255,255,.075);

    background:
        rgba(255,255,255,.012);

}


/* =====================================================
   SHOWCASE
===================================================== */

.portfolio-showcase {

    position:
        relative;

    min-height:
        510px;

    padding:
        14px;

    overflow:
        hidden;

}


.showcase-image-wrap {

    position:
        relative;

    width:
        100%;

    height:
        100%;

    min-height:
        480px;

    overflow:
        hidden;

    background:
        #0b1725;

}


.portfolio-main-image {

    display:
        block;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        opacity .35s ease,
        transform .6s cubic-bezier(.22,1,.36,1);

}


.portfolio-main-image.image-changing {

    opacity:
        0;

    transform:
        scale(1.025);

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.showcase-image-wrap::after {

    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04),
            transparent 55%,
            rgba(0,0,0,.38)
        );

    pointer-events:
        none;

}


.showcase-overlay {

    position:
        absolute;

    z-index:
        2;

    left:
        24px;

    right:
        24px;

    bottom:
        22px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.showcase-number {

    font-family:
        monospace;

    font-size:
        10px;

    letter-spacing:
        1px;

    color:
        rgba(255,255,255,.55);

}


.showcase-status {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        8px 11px;

    border:
        1px solid
        rgba(255,255,255,.10);

    background:
        rgba(5,15,25,.72);

    backdrop-filter:
        blur(10px);

    font-family:
        monospace;

    font-size:
        8px;

    letter-spacing:
        1px;

    color:
        rgba(255,255,255,.65);

}


.showcase-status i {

    width:
        5px;

    height:
        5px;

    border-radius:
        50%;

    background:
        #22c55e;

    box-shadow:
        0 0 10px
        rgba(34,197,94,.7);

}


/* =====================================================
   PROJECT INFO
===================================================== */

.portfolio-info {

    display:
        flex;

    flex-direction:
        column;

    padding:
        48px 42px;

    border-left:
        1px solid
        rgba(255,255,255,.06);

}


.portfolio-info-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        38px;

}


.portfolio-category {

    font-family:
        monospace;

    font-size:
        18px;

    letter-spacing:
        1.5px;

    color:
        var(--sky);

}




.portfolio-info h3 {

    margin:
        0;

    max-width:
        500px;

    font-size:
        clamp(34px, 3vw, 54px);

    line-height:
        .98;

    letter-spacing:
        -2.5px;

    font-weight:
        500;

    color:
        rgba(255,255,255,.94);

}


.portfolio-info > p {

    margin:
        28px 0 0;

    max-width:
        500px;

    font-size:
        14px;

    line-height:
        1.8;

    color:
        rgba(255,255,255,.42);

}


/* =====================================================
   FEATURES
===================================================== */

.portfolio-features {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        15px 22px;

    margin-top:
        32px;

}


.portfolio-features div {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        9px;

    font-size:
        14px;

    line-height:
        1.5;

    color:
        rgb(255, 255, 255);

}


.portfolio-features span {

    color:
        var(--sky);

    font-size:
        14px;

}


/* =====================================================
   TECH STACK
===================================================== */

.portfolio-tech {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;

    margin-top:
        auto;

    padding-top:
        32px;

}


.portfolio-tech span {

    padding:
        7px 10px;

    border:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.018);

    font-family:
        monospace;

    font-size:
        14px;

    color:
        rgba(255,255,255,.38);

}


/* =====================================================
   VIEW PROJECT
===================================================== */

.portfolio-view-project {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-top:
        30px;

    padding-top:
        20px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color:
        rgba(255,255,255,.65);

    text-decoration:
        none;

    font-family:
        monospace;

    font-size:
        9px;

    letter-spacing:
        1.5px;

    transition:
        color .25s ease;

}


.portfolio-view-project strong {

    font-size:
        18px;

    font-weight:
        400;

    color:
        var(--sky);

    transition:
        transform .3s ease;

}


.portfolio-view-project:hover {

    color:
        var(--sky);

}


.portfolio-view-project:hover strong {

    transform:
        translateX(5px);

}


/* =====================================================
   PROJECT CARDS
===================================================== */

.portfolio-cards {

    display:
        grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap:
        12px;

    margin-top:
        16px;

}


.portfolio-card {

    position:
        relative;

    min-width:
        0;

    padding:
        10px;

    border:
        1px solid
        rgba(255,255,255,.075);

    border-radius:
        14px;

    background:
        rgba(255,255,255,.012);

    text-align:
        left;

    color:
        white;

    cursor:
        pointer;

    overflow:
        hidden;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;

}


.portfolio-card:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(56,189,248,.25);

}


.portfolio-card.active {

    border-color:
        rgba(56,189,248,.75);

    background:
        rgba(56,189,248,.025);

}


/* =====================================================
   CARD IMAGE
===================================================== */

.portfolio-card-image {

    width:
        100%;

    height:
        105px;

    overflow:
        hidden;

    border-radius:
        8px;

    background:
        #0d1a29;

}


.portfolio-card-image img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    opacity:
        .78;

    transition:
        transform .4s ease,
        opacity .3s ease;

}


.portfolio-card:hover img,
.portfolio-card.active img {

    transform:
        scale(1.04);

    opacity:
        1;

}


/* =====================================================
   CARD CONTENT
===================================================== */

.portfolio-card-content {

    padding:
        14px 4px 5px;

}


.portfolio-card-content > span {

    display:
        block;

    margin-bottom:
        8px;

    font-family:
        monospace;

    font-size:
        8px;

    color:
        rgba(255,255,255,.22);

}


.portfolio-card-content h4 {

    margin:
        0;

    font-size:
        14px;

    line-height:
        1.2;

    font-weight:
        600;

    color:
        rgba(255,255,255,.88);

}


.portfolio-card-content p {

    margin:
        5px 0 0;

    font-size:
        9px;

    line-height:
        1.4;

    color:
        rgba(255,255,255,.34);

}


/* =====================================================
   CARD ARROW
===================================================== */

.portfolio-card-arrow {

    position:
        absolute;

    right:
        13px;

    bottom:
        14px;

    font-size:
        17px;

    color:
        rgba(255,255,255,.25);

    transition:
        color .25s ease,
        transform .25s ease;

}


.portfolio-card.active
.portfolio-card-arrow {

    color:
        var(--sky);

}


.portfolio-card:hover
.portfolio-card-arrow {

    color:
        var(--sky);

    transform:
        translateX(3px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1150px) {

    .portfolio-featured {

        grid-template-columns:
            1.4fr
            .9fr;

    }


    .portfolio-info {

        padding:
            35px 30px;

    }


    .portfolio-cards {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .portfolio-section {

        padding:
            110px 20px
            90px;

    }


    .portfolio-header {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;

        margin-bottom:
            40px;

    }


    .portfolio-featured {

        grid-template-columns:
            1fr;

    }


    .portfolio-showcase {

        min-height:
            380px;

    }


    .showcase-image-wrap {

        min-height:
            350px;

    }


    .portfolio-info {

        border-left:
            none;

        border-top:
            1px solid
            rgba(255,255,255,.06);

        padding:
            35px 25px;

    }


    .portfolio-cards {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .portfolio-heading {

        font-size:
            46px;

        letter-spacing:
            -3px;

    }


    .portfolio-showcase {

        padding:
            8px;

        min-height:
            260px;

    }


    .showcase-image-wrap {

        min-height:
            245px;

    }


    .portfolio-info h3 {

        font-size:
            36px;

    }


    .portfolio-features {

        grid-template-columns:
            1fr;

    }


    .portfolio-cards {

        grid-template-columns:
            1fr 1fr;

        gap:
            8px;

    }


    .portfolio-card {

        padding:
            7px;

    }


    .portfolio-card-image {

        height:
            80px;

    }


    .portfolio-card-content h4 {

        font-size:
            12px;

    }


    .portfolio-card-content p {

        font-size:
            8px;

    }

}
/* =====================================================
   WHY NIARA SECTION
===================================================== */

.why-section {

    position: relative;

    padding: 30px 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 20, 32, 0.55),
            transparent
        );

}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.why-layout {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 50px;

    align-items: start;

}


/* =====================================================
   INTRO
===================================================== */

.why-intro {

    position: sticky;

    top: 130px;

}


.why-intro h2 {

    max-width: 520px;

    margin-top: 24px;

    font-size:
        clamp(45px, 6vw, 76px);

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: 500;

}


.why-intro h2 span {

    color: var(--sky);

}


.why-intro p {

    max-width: 470px;

    margin-top: 28px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.9;

}


/* =====================================================
   CTA
===================================================== */

.why-cta {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 35px;

    padding: 12px 0;

    color: var(--text-primary);

    font-size: 16px;

    border-bottom:
        1px solid rgba(56, 189, 248, 0.35);

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.why-cta span {

    color: var(--sky);

    font-size: 17px;

}


.why-cta:hover {

    color: var(--sky);

    gap: 20px;

}


/* =====================================================
   WHY POINTS
===================================================== */

.why-points {

    border-top:
        1px solid rgba(148, 163, 184, 0.15);

}


/* =====================================================
   WHY POINT
===================================================== */

.why-point {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 25px;

    padding: 34px 0;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.15);

    transition:
        padding-left 0.4s ease;

}


.why-point:hover {

    padding-left: 10px;

}


/* =====================================================
   NUMBER
===================================================== */

.why-point-number {

    padding-top: 4px;

    color: var(--sky);

    font-family: monospace;

    font-size: 14px;

    letter-spacing: 2px;

}


/* =====================================================
   CONTENT
===================================================== */

.why-point-content h3 {

    font-size: 21px;

    line-height: 1.3;

    font-weight: 500;

    letter-spacing: -0.4px;

}


.why-point-content p {

    max-width: 550px;

    margin-top: 12px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;

}




/* =====================================================
   REVEAL ANIMATION
===================================================== */

.why-section .reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

}


.why-section .reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =====================================================
   STAGGER
===================================================== */

.why-point:nth-child(1) {
    transition-delay: 0.05s;
}

.why-point:nth-child(2) {
    transition-delay: 0.12s;
}

.why-point:nth-child(3) {
    transition-delay: 0.19s;
}

.why-point:nth-child(4) {
    transition-delay: 0.26s;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .why-layout {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .why-intro {

        position: static;

    }


    .why-stats {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 0;

    }


    .stat-item:nth-child(3) {

        padding-left: 0;

        border-left: none;

    }

}


@media (max-width: 600px) {

    .why-section {

        padding: 10px 0;

    }


    .why-intro h2 {

        letter-spacing: -2px;

    }


    .why-layout {

        gap: 55px;

    }


    .why-point {

        grid-template-columns: 40px 1fr;

        gap: 15px;

        padding: 28px 0;

    }


    .why-point-content h3 {

        font-size: 18px;

    }


    .why-point-content p {

        font-size: 12px;

    }


    .why-stats {

        grid-template-columns: 1fr 1fr;

        margin-top: 80px;

        gap: 35px 0;

    }


    .stat-item {

        padding-left: 20px;

    }


    .stat-number {

        font-size: 42px;

    }

}
/* =====================================================
   HOW WE WORK / PROCESS SECTION
===================================================== */

.process-section {

    position: relative;

    padding: 30px 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 20, 32, 0.42),
            transparent
        );

}


/* =====================================================
   PROCESS HEADING
===================================================== */

.process-heading {

    max-width: 850px;

}


.process-heading h2 {

    margin-top: 22px;

    font-size:
        clamp(22px, 8vw, 58px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 500;

}


.process-heading h2 span {

    color: var(--sky);

}


.process-heading p {

    max-width: 600px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   PROCESS GRID
===================================================== */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 75px;

    border-top:
        1px solid rgba(148, 163, 184, 0.15);

    border-bottom:
        1px solid rgba(148, 163, 184, 0.15);

}


/* =====================================================
   PROCESS CARD
===================================================== */

.process-card {

    position: relative;

    min-height: 365px;

    padding: 34px 30px 35px;

    overflow: hidden;

    border-right:
        1px solid rgba(148, 163, 184, 0.13);

    background:
        rgba(7, 17, 28, 0.22);

    transition:
        background 0.45s ease,
        transform 0.45s ease;

}


.process-card:last-child {

    border-right: none;

}


/* =====================================================
   CARD GLOW
===================================================== */

.process-card::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    top: -100px;

    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.13),
            transparent 68%
        );

    opacity: 0;

    transform: scale(0.65);

    transition:
        opacity 0.5s ease,
        transform 0.7s ease;

    pointer-events: none;

}


.process-card:hover::before {

    opacity: 1;

    transform: scale(1);

}


.process-card:hover {

    background:
        rgba(9, 24, 38, 0.65);

}


/* =====================================================
   CARD TOP
===================================================== */

.process-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   PROCESS NUMBER
===================================================== */

.process-number {

    color: var(--sky);

    font-family: monospace;

    font-size: 16px;

    letter-spacing: 2px;

}


/* =====================================================
   PROCESS ICON
===================================================== */

.process-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(148, 163, 184, 0.15);

    border-radius: 50%;

    color: var(--text-muted);

    font-size: 15px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;

}


.process-card:hover .process-icon {

    color: #021019;

    background: var(--sky);

    border-color: var(--sky);

    transform:
        translate(3px, -3px);

}


/* =====================================================
   CARD CONTENT
===================================================== */

.process-card-content {

    position: relative;

    z-index: 2;

    margin-top: 30px;

}


.process-label {

    color:
        rgba(125, 211, 252, 0.62);

    font-family: monospace;

    font-size: 20px;

    letter-spacing: 2px;

}


.process-card-content h3 {

    max-width: 240px;

    margin-top: 17px;

    color: var(--text-primary);

    font-size: 22px;

    line-height: 1.3;

    letter-spacing: -0.7px;

    font-weight: 500;

}


.process-card-content p {

    max-width: 255px;

    margin-top: 17px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.85;

}


/* =====================================================
   BOTTOM PROCESS LINE
===================================================== */

.process-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 65px;

}


.process-bottom-line {

    width: 80px;

    height: 1px;

    background:
        rgba(56, 189, 248, 0.22);

}


.process-bottom p {

    color:
        rgba(148, 163, 184, 0.55);

    font-family: monospace;

    font-size: 19px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* =====================================================
   STAGGERED REVEAL
===================================================== */

.process-card:nth-child(1) {

    transition-delay: 0.05s;

}


.process-card:nth-child(2) {

    transition-delay: 0.12s;

}


.process-card:nth-child(3) {

    transition-delay: 0.19s;

}


.process-card:nth-child(4) {

    transition-delay: 0.26s;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .process-card:nth-child(2) {

        border-right: none;

    }


    .process-card:nth-child(1),
    .process-card:nth-child(2) {

        border-bottom:
            1px solid rgba(148, 163, 184, 0.13);

    }


    .process-card:nth-child(3) {

        border-bottom: none;

    }


    .process-card:nth-child(4) {

        border-right: none;

        border-bottom: none;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .process-section {

        padding: 10px 0;

    }


    .process-heading h2 {

        letter-spacing: -2px;

    }


    .process-grid {

        grid-template-columns: 1fr;

        margin-top: 55px;

        border-radius: 17px;

        overflow: hidden;

        border:
            1px solid rgba(148, 163, 184, 0.15);

    }


    .process-card {

        min-height: 300px;

        padding: 30px 25px;

        border-right: none;

        border-bottom:
            1px solid rgba(148, 163, 184, 0.13);

    }


    .process-card:last-child {

        border-bottom: none;

    }


    .process-card-content {

        margin-top: 55px;

    }


    .process-card-content h3 {

        font-size: 20px;

    }


    .process-card-content p {

        font-size: 12px;

    }


    .process-bottom {

        gap: 12px;

    }


    .process-bottom-line {

        width: 35px;

    }


    .process-bottom p {

        font-size: 8px;

        letter-spacing: 1.5px;

    }

}
/* =====================================================
   CONTACT / CTA SECTION
===================================================== */

.contact-section {

    position: relative;

    min-height: 80vh;

    padding: 60px 0 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 25% 45%,
            rgba(56, 189, 248, 0.075),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 20, 32, 0.65)
        );

}


/* =====================================================
   BACKGROUND ORBS
===================================================== */

.contact-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);

}


.contact-orb-one {

    width: 500px;

    height: 500px;

    left: -260px;

    top: 25%;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.10),
            transparent 68%
        );

}


.contact-orb-two {

    width: 400px;

    height: 400px;

    right: -220px;

    bottom: -100px;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.07),
            transparent 68%
        );

}


/* =====================================================
   CONTACT WRAPPER
===================================================== */

.contact-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.3fr 0.7fr;

    gap: 100px;

    padding-bottom: 100px;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.15);

}


/* =====================================================
   MAIN CONTENT
===================================================== */

.contact-main {

    max-width: 850px;

}


.contact-main h2 {

    margin-top: 25px;

    max-width: 850px;

    font-size:
        clamp(48px, 7vw, 88px);

    line-height: 1;

    letter-spacing: -4px;

    font-weight: 500;

}


.contact-main h2 span {

    display: block;

    color: var(--sky);

}


.contact-main > p {

    max-width: 600px;

    margin-top: 30px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.9;

}


/* =====================================================
   PRIMARY CONTACT BUTTON
===================================================== */

.contact-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 38px;

    min-height: 55px;

    padding: 0 25px;

    border-radius: 50px;

    color: #021019;

    background: var(--sky);

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 0 35px rgba(56, 189, 248, 0.14);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.contact-primary-btn span {

    font-size: 19px;

    transition:
        transform 0.35s ease;

}


.contact-primary-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 50px rgba(56, 189, 248, 0.28);

}


.contact-primary-btn:hover span {

    transform:
        translate(4px, -4px);

}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {

    align-self: end;

    border-top:
        1px solid rgba(148, 163, 184, 0.15);

}


.contact-detail {

    padding: 22px 0;

    border-bottom:
        1px solid rgba(148, 163, 184, 0.12);

}


.contact-detail-label {

    display: block;

    margin-bottom: 8px;

    color:
        rgb(81, 179, 224);

    font-family: monospace;

    font-size: 22px;

    letter-spacing: 2px;

}


.contact-detail a,
.contact-detail p {

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.6;

    transition:
        color 0.3s ease;

}


.contact-detail a:hover {

    color: var(--sky);

}


.contact-detail p {

    color: var(--text-muted);

}


/* =====================================================
   BOTTOM LINE
===================================================== */

.contact-bottom {

    display: flex;

    align-items: center;

    gap: 22px;

    padding-top: 30px;

}


.contact-bottom > span {

    color:
        rgba(148, 163, 184, 0.48);

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 2px;

    white-space: nowrap;

}


.contact-line {

    flex: 1;

    height: 1px;

    background:
        rgba(148, 163, 184, 0.10);

}


/* =====================================================
   REVEAL
===================================================== */

.contact-section .reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

}


.contact-section .reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 900px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .contact-details {

        max-width: 600px;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 600px) {

    .contact-section {

        min-height: auto;

        padding: 110px 0 60px;

    }


    .contact-wrapper {

        gap: 55px;

        padding-bottom: 70px;

    }


    .contact-main h2 {

        font-size:
            clamp(45px, 13vw, 65px);

        letter-spacing: -3px;

    }


    .contact-main > p {

        font-size: 13px;

    }


    .contact-primary-btn {

        width: 100%;

        max-width: 280px;

    }


    .contact-bottom {

        gap: 12px;

    }


    .contact-bottom > span {

        font-size: 7px;

        letter-spacing: 1px;

    }

}
.footer {
    position: relative;
    overflow: hidden;
    background: #071525;
    padding: 90px 7% 25px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}

/* subtle glow */

.footer-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    background: rgba(0, 174, 255, 0.12);
    filter: blur(100px);
    pointer-events: none;
}


/* MAIN */

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 70px;
}


/* BRAND */

.footer-brand {
    max-width: 380px;
}

.footer-brand h2 {
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.footer-brand h2 span {
    color: #55c8ff;
}

.footer-brand p {
    max-width: 330px;
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* BUTTON */

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border: 1px solid rgba(85,200,255,0.4);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-btn span {
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #55c8ff;
    color: #071525;
    transform: translateY(-3px);
}

.footer-btn:hover span {
    transform: translate(3px, -3px);
}


/* LINKS */

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 12px;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255,255,255,0.52);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.7;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #55c8ff;
    transform: translateX(3px);
}


/* BOTTOM */

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #55c8ff;
}


/* MOBILE */

@media (max-width: 900px) {

    .footer {
        padding: 70px 6% 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links {
        gap: 30px;
    }
}


@media (max-width: 600px) {

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}
/* =====================================================
   GLOBAL FLOATING CONTACT ACTIONS
===================================================== */

.global-floating-actions {

    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 9px;

}


/* =====================================================
   BUTTON
===================================================== */

.global-float {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-width: 125px;

    padding: 12px 15px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 40px;

    background: rgba(5,15,25,.88);

    color: rgba(25, 181, 215, 0.72);

    text-decoration: none;

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 1px;

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0,0,0,.30);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        color .3s ease;

}

/* =====================================================
   FLOATING CONTACT BUTTONS
===================================================== */

.floating_btn {

    position: fixed;

    right: 28px;
    bottom: 28px;

    display: flex;
    flex-direction: column;

    gap: 14px;

    z-index: 1000;

}


/* ICON */

.contact_icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 27px;

    text-align: center;

    text-decoration: none !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


/* WHATSAPP */

.whatsapp-icon {

    background:transparent;

    box-shadow:
        0 0 0 0 rgba(37,211,102,.55);

    animation:
        whatsappPulse 1.5s infinite;

}


/* CALL */

.call-icon {

    background: transparent;

    box-shadow:
        0 0 0 0 rgba(35, 81, 160, 0.55);

    animation:
        callPulse 1.5s infinite;

}


/* HOVER */

.contact_icon:hover {

    transform: scale(1.08);

}


/* WHATSAPP PULSE */

@keyframes whatsappPulse {

    70% {

        box-shadow:
            0 0 0 18px rgba(37,211,102,0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(37,211,102,0);

    }

}


/* CALL PULSE */

@keyframes callPulse {

    70% {

        box-shadow:
            0 0 0 18px rgba(56,189,248,0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(56,189,248,0);

    }

}


/* MOBILE */

@media (max-width: 600px) {

    .floating_btn {

        right: 16px;
        bottom: 18px;

        gap: 10px;

    }

    .contact_icon {

        width: 52px;
        height: 52px;

        font-size: 24px;

    }

}
