/* =========================================================
   SURREAL ENGINEERING
   PROFESSIONAL MULTI-COLOR SYSTEM
========================================================= */

:root {

    color-scheme: light dark;

    --orange: #f6a91b;
    --orange-2: #f4791d;
    --yellow: #ffc94d;

    --navy: #0b1f3a;
    --navy-2: #12325a;
    --navy-3: #183f6d;

    --blue: #3f82d1;
    --blue-soft: #eaf3fd;

    --purple: #7357d9;
    --purple-soft: #f0edff;

    --green: #3f9b72;
    --green-soft: #eaf7f0;

    --rose: #d9686a;
    --rose-soft: #fbefef;

    --cream: #fff9ee;

    --page-bg: #f6f8fb;

    --section-white: #ffffff;
    --section-blue: #eef5fb;
    --section-purple: #f6f3ff;
    --section-green: #f0f8f4;
    --section-warm: #fff8ed;

    --surface: #ffffff;
    --surface-2: #f3f6fa;

    --text: #10233d;
    --text-soft: #556a82;
    --muted: #8190a1;

    --border: rgba(13, 35, 66, .10);

    --header-bg: rgba(255, 255, 255, .92);

    --shadow:
        0 18px 55px
        rgba(13, 35, 66, .08);

    --shadow-hover:
        0 35px 90px
        rgba(13, 35, 66, .16);

    --container: 1280px;
}


/* =========================================================
   DARK MODE
========================================================= */

@media (prefers-color-scheme: dark) {

    :root {

        --page-bg: #071526;

        --section-white: #0d213a;
        --section-blue: #102944;
        --section-purple: #171f3d;
        --section-green: #102c29;
        --section-warm: #282719;

        --surface: #142d49;
        --surface-2: #183551;

        --text: #f5f8fb;
        --text-soft: #b5c4d5;
        --muted: #8ea1b5;

        --border: rgba(255, 255, 255, .09);

        --header-bg: rgba(7, 21, 38, .91);

        --shadow:
            0 18px 55px
            rgba(0,0,0,.24);

        --shadow-hover:
            0 35px 90px
            rgba(0,0,0,.40);
    }

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    overflow-x: hidden;

    font-family:
        "Poppins",
        sans-serif;

    color:
        var(--text);

    background:
        var(--page-bg);

    -webkit-font-smoothing:
        antialiased;
}


body.modal-open,
body.nav-open {
    overflow: hidden;
}


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea {
    font: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


input,
textarea {
    outline: 0;
}


ul {
    list-style: none;
}


.container {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;
}


a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {

    outline:
        3px solid
        rgba(246,169,27,.48);

    outline-offset:
        4px;
}


/* =========================================================
   PARTICLES
========================================================= */

.cursor-particles {

    position: fixed;

    inset: 0;

    z-index: 9999;

    width: 100vw;
    height: 100vh;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    inset:
        0 0 auto 0;

    z-index: 1000;

    width: 100%;

    padding:
        18px 0;

    background:
        var(--header-bg);

    border-bottom:
        1px solid
        var(--border);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transform:
        translateY(0);

    opacity: 1;

    transition:
        transform .42s cubic-bezier(.22,.61,.36,1),
        opacity .28s ease,
        background .3s ease,
        padding .3s ease,
        box-shadow .3s ease;
}


.site-header.scrolled {

    padding:
        10px 0;

    box-shadow:
        0 10px 35px
        rgba(11,31,58,.09);
}


.site-header.nav-hidden {

    transform:
        translateY(-115%);

    opacity: 0;
}


.header-inner {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 28px;
}


.nav-logo {

    width: 195px;
    height: 52px;

    object-fit: contain;
}


.main-nav {

    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-link {

    position: relative;

    padding:
        10px 0;

    color:
        var(--text-soft);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.25px;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 1px;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--orange-2)
        );

    border-radius: 100px;

    transition:
        width .3s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--text);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}


.search-box {

    display: flex;

    align-items: center;

    overflow: hidden;

    border:
        1px solid transparent;

    border-radius: 30px;

    transition: .3s ease;
}


.search-box.open {

    background:
        var(--surface);

    border-color:
        var(--border);
}


.search-box input {

    width: 0;

    padding: 0;

    opacity: 0;

    color:
        var(--text);

    background:
        transparent;

    border: 0;

    transition:
        width .3s ease,
        opacity .3s ease,
        padding .3s ease;
}


.search-box.open input {

    width: 150px;

    padding-left: 15px;

    opacity: 1;
}


.icon-btn {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    color:
        var(--text);

    background:
        transparent;

    border-radius: 50%;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding:
        0 23px;

    overflow: hidden;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;
}


.btn i {

    transition:
        transform .3s ease;
}


.btn:hover i {
    transform: translateX(5px);
}


.btn-orange {

    color:
        #10233d;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            var(--orange)
        );
}


.btn-orange:hover {

    box-shadow:
        0 15px 38px
        rgba(246,169,27,.28);
}


.btn-dark {

    color: #fff;

    background:
        var(--navy);
}


.btn-dark:hover {

    background:
        var(--orange-2);

    box-shadow:
        0 16px 40px
        rgba(244,121,29,.23);
}


.full-btn {
    width: 100%;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {

    display: none;

    width: 42px;
    height: 42px;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    background: transparent;
}


.hamburger span {

    width: 22px;
    height: 2px;

    background:
        var(--text);
}


/* =========================================================
   HERO
========================================================= */

.home-hero {

    position: relative;

    min-height:
        100svh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        145px 0 100px;

    color: #fff;

    background:

        radial-gradient(
            circle at 92% 12%,
            rgba(246,169,27,.14),
            transparent 25%
        ),

        radial-gradient(
            circle at 10% 88%,
            rgba(63,130,209,.18),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #0a1d36,
            #0d2747 62%,
            #112e50
        );
}


.hero-network {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    pointer-events: none;
}


.hero-grid-overlay {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.014) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.014) 1px,
            transparent 1px
        );

    background-size:
        68px 68px;
}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter:
        blur(120px);

    pointer-events: none;
}


.hero-glow-one {

    width: 480px;
    height: 480px;

    top: -230px;
    right: -120px;

    background:
        rgba(246,169,27,.12);
}


.hero-glow-two {

    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -250px;

    background:
        rgba(63,130,209,.14);
}


.hero-glow-three {

    width: 360px;
    height: 360px;

    right: 24%;
    bottom: -250px;

    background:
        rgba(115,87,217,.11);
}


.premium-hero-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1.08fr)
        minmax(430px,.92fr);

    align-items: center;

    gap:
        clamp(
            70px,
            8vw,
            120px
        );
}


.hero-kicker {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color:
        #a2b6cc;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.hero-kicker span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 20px
        rgba(246,169,27,.7);
}


.premium-hero-title {

    max-width: 700px;

    font-size:
        clamp(
            62px,
            7vw,
            110px
        );

    line-height: .91;

    letter-spacing: -5px;
}


.premium-hero-title strong {

    display: block;

    color:
        var(--yellow);
}


.premium-hero-description {

    max-width: 610px;

    margin-top: 30px;

    color:
        #b3c2d2;

    font-size: 15px;

    line-height: 1.9;
}


.hero-benefits {

    display: flex;

    flex-wrap: wrap;

    gap:
        18px 30px;

    margin-top: 32px;
}


.hero-benefit {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        #c1ccda;

    font-size: 11px;
}


.hero-benefit i {
    color: var(--orange);
}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 35px;
}


.hero-primary-btn {

    color:
        #10233d;

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            var(--orange)
        );
}


.hero-secondary-btn {

    color: #fff;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.16);
}


.hero-secondary-btn:hover {
    background: rgba(255,255,255,.08);
}


.hero-stats {

    max-width: 650px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

    margin-top: 48px;

    padding-top: 29px;

    border-top:
        1px solid
        rgba(255,255,255,.10);
}


.hero-stat {
    position: relative;
}


.hero-stat:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;
    top: 3px;

    width: 1px;
    height: 42px;

    background:
        rgba(255,255,255,.08);
}


.hero-stat strong {

    display: block;

    font-size: 30px;
}


.hero-stat small {

    display: block;

    margin-top: 7px;

    color:
        #8fa4bc;

    font-size: 8px;

    letter-spacing: .8px;
}


/* =========================================================
   HERO CARDS — TRIANGLE LAYOUT
========================================================= */

.premium-hero-services {

    position: relative;

    width: 100%;
    max-width: 700px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    grid-template-areas:
        "engineering digital"
        "hire hire";

    gap: 20px 22px;

    align-items: stretch;

    justify-self: end;
}


/* ---------------------------------------------------------
   TRIANGLE POSITIONING
   Works with the existing HTML card order:
   1 = Engineering
   2 = IT & Digital
   3 = Hire FullTime Employees
--------------------------------------------------------- */

.premium-hero-services
.hero-service-card:nth-child(1) {

    grid-area:
        engineering;
}


.premium-hero-services
.hero-service-card:nth-child(2) {

    grid-area:
        digital;
}


.premium-hero-services
.hero-service-card:nth-child(3) {

    grid-area:
        hire;

    width:
        calc(50% - 11px);

    justify-self:
        center;
}


/* ---------------------------------------------------------
   CARD BASE
--------------------------------------------------------- */

.hero-service-card {

    position: relative;

    min-height: 205px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px 26px;

    overflow: hidden;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.068),
            rgba(255,255,255,.042)
        );

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 22px;

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.035);

    transform:
        translateY(0);

    transition:
        transform .4s cubic-bezier(.22,.61,.36,1),
        background .35s ease,
        border-color .35s ease,
        box-shadow .4s ease;
}


/* ---------------------------------------------------------
   CARD LIGHT
--------------------------------------------------------- */

.hero-service-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        radial-gradient(
            circle at 50% 22%,
            rgba(246,169,27,.07),
            transparent 36%
        );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .35s ease;
}


/* ---------------------------------------------------------
   BOTTOM CORNER ACCENT
--------------------------------------------------------- */

.hero-service-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -128px;
    bottom: -128px;

    z-index: 0;

    border-radius: 50%;

    background:
        rgba(246,169,27,.13);

    pointer-events: none;

    transition:
        transform .55s ease,
        background .35s ease;
}


.premium-hero-services
.hero-service-card:nth-child(2)::after {

    background:
        rgba(63,130,209,.13);
}


.premium-hero-services
.hero-service-card:nth-child(3)::after {

    background:
        rgba(115,87,217,.13);
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.hero-service-card:hover {

    transform:
        translateY(-9px);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.058)
        );

    border-color:
        rgba(246,169,27,.20);

    box-shadow:
        0 28px 70px
        rgba(0,0,0,.23),
        inset 0 1px 0
        rgba(255,255,255,.05);
}


.hero-service-card:hover::before {

    opacity: 1;
}


.hero-service-card:hover::after {

    transform:
        scale(2.8);
}


/* ---------------------------------------------------------
   INDEX
--------------------------------------------------------- */

.hero-card-index {

    position: absolute;

    top: 15px;
    left: 17px;

    z-index: 3;

    color:
        rgba(255,255,255,.42);

    font-size: 8px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 1px;
}


.hero-service-featured
.hero-card-index {

    color:
        rgba(255,255,255,.42);
}


/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.hero-service-icon {

    position: relative;

    z-index: 2;

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 14px;

    color:
        var(--orange);

    font-size: 30px;
}


.hero-service-featured
.hero-service-icon {

    color:
        var(--orange);
}


.hero-service-card:hover
.hero-service-icon {

    animation:
        iconWobble .6s ease;
}


@keyframes iconWobble {

    0% {
        transform:
            rotate(0)
            scale(1);
    }

    25% {
        transform:
            rotate(-9deg)
            scale(1.08);
    }

    50% {
        transform:
            rotate(8deg)
            scale(1.13);
    }

    75% {
        transform:
            rotate(-4deg)
            scale(1.08);
    }

    100% {
        transform:
            rotate(0)
            scale(1);
    }
}


/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */

.hero-service-card h3,
.hero-service-card p {

    position: relative;

    z-index: 2;
}


.hero-service-card h3 {

    max-width: 100%;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.4;
}


.hero-service-card p {

    max-width: 255px;

    margin-top: 8px;

    color:
        #a9bbcf;

    font-size: 10px;

    line-height: 1.55;
}


/* ---------------------------------------------------------
   ARROW
--------------------------------------------------------- */

.hero-card-arrow {

    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 3;

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    color: #fff;

    background:
        rgba(255,255,255,.09);

    border:
        1px solid
        rgba(255,255,255,.055);

    border-radius: 50%;

    opacity: 0;

    transform:
        translate(-5px,5px)
        scale(.92);

    transition:
        opacity .3s ease,
        transform .3s ease,
        background .3s ease;
}


.hero-service-card:hover
.hero-card-arrow {

    opacity: 1;

    transform:
        translate(0)
        scale(1);
}


.hero-card-arrow:hover {

    background:
        var(--orange);
}


/* ---------------------------------------------------------
   TRIANGLE GUIDE LINE
--------------------------------------------------------- */

.premium-hero-services::before {

    content: "";

    position: absolute;

    left: 50%;
    top: calc(50% - 12px);

    width: 1px;
    height: 28px;

    z-index: -1;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            180deg,
            rgba(246,169,27,0),
            rgba(246,169,27,.28),
            rgba(246,169,27,0)
        );

    pointer-events: none;
}


/* =========================================================
   GENERAL
========================================================= */

.section {

    position: relative;

    padding:
        120px 0;
}


.about {

    overflow: hidden;

    background:
        var(--section-white);
}


.services {

    background:
        linear-gradient(
            180deg,
            var(--section-blue),
            #f7f9fc
        );
}


.help {

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--section-white),
            var(--section-warm)
        );
}


.process-section {

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0b1f3a,
            #14345d
        );

    color: #fff;
}


.projects-intro {

    padding-bottom: 70px;

    background:
        var(--section-white);
}


.contact {

    background:
        linear-gradient(
            180deg,
            var(--section-blue),
            var(--section-white)
        );
}


/* =========================================================
   TYPE
========================================================= */

.eyebrow {

    margin-bottom: 14px;

    color:
        var(--orange-2);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-title {

    max-width: 790px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            43px,
            5vw,
            72px
        );

    font-weight: 500;

    line-height: 1.03;

    letter-spacing: -2px;
}


.section-title em {

    color:
        var(--orange-2);

    font-style: italic;
}


.section-text {

    max-width: 620px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.9;
}


.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 50px;

    margin-bottom: 55px;
}


.section-heading-text {

    max-width: 430px;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.8;
}


.center-heading {

    max-width: 850px;

    margin:
        0 auto 60px;

    text-align: center;
}


.center-heading .section-title {
    margin-inline: auto;
}


.center-heading > p:last-child {

    max-width: 650px;

    margin:
        20px auto 0;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.about-orb-one {

    width: 430px;
    height: 430px;

    top: -190px;
    right: -190px;

    background:
        rgba(246,169,27,.055);
}


.about-orb-two {

    width: 360px;
    height: 360px;

    left: -180px;
    bottom: -190px;

    background:
        rgba(115,87,217,.055);
}


.about-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}


.about-copy .btn {
    margin-top: 28px;
}


.about-gallery {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    grid-template-rows:
        220px 220px;

    gap: 13px;
}


.about-image {

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        var(--shadow);
}


.about-image-large {
    grid-row: span 2;
}


.about-image img {

    height: 100%;

    object-fit: cover;

    transition:
        transform .75s ease,
        filter .5s ease;
}


.about-image:hover img {

    transform:
        scale(1.08);

    filter:
        saturate(1.1);
}


/* =========================================================
   CAPABILITY STRIP
========================================================= */

.capability-strip {

    padding:
        28px 0;

    color: #fff;

    background:
        var(--navy);
}


.capability-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}


.capability-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        12px 25px;

    border-right:
        1px solid
        rgba(255,255,255,.09);
}


.capability-item:last-child {
    border-right: 0;
}


.capability-item > span {

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.capability-orange > span {

    color:
        var(--orange);

    background:
        rgba(246,169,27,.1);
}


.capability-purple > span {

    color:
        #9a88f0;

    background:
        rgba(115,87,217,.12);
}


.capability-green > span {

    color:
        #72c59a;

    background:
        rgba(63,155,114,.12);
}


.capability-blue > span {

    color:
        #79b5ff;

    background:
        rgba(63,130,209,.13);
}


.capability-item:hover > span {

    transform:
        rotate(-8deg)
        scale(1.1);
}


.capability-item strong {

    display: block;

    font-size: 12px;
}


.capability-item small {

    color:
        #90a5bc;

    font-size: 9px;
}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {

    display: grid;

    gap: 35px;
}


.service-card {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr .9fr;

    min-height: 500px;

    overflow: hidden;

    background:
        var(--surface);

    border:
        1px solid
        var(--border);

    border-radius: 21px;

    box-shadow:
        var(--shadow);

    transform-style:
        preserve-3d;

    transition:
        box-shadow .4s ease;
}


.service-card:hover {

    box-shadow:
        var(--shadow-hover);
}


.service-card-civil {

    background:
        linear-gradient(
            135deg,
            var(--surface) 60%,
            rgba(246,169,27,.07)
        );
}


.service-card-it {

    background:
        linear-gradient(
            135deg,
            var(--surface) 60%,
            rgba(115,87,217,.08)
        );
}


.service-card-copy {

    padding: 50px;
}


.service-card-top {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    margin-bottom: 30px;
}


.service-icon {

    width: 56px;
    height: 56px;

    display: grid;

    place-items: center;

    color:
        var(--orange-2);

    background:
        rgba(246,169,27,.11);

    border-radius: 15px;

    font-size: 20px;
}


.service-card-it .service-icon {

    color:
        var(--purple);

    background:
        rgba(115,87,217,.11);
}


.service-index {

    color:
        var(--muted);

    font-size: 10px;

    letter-spacing: 2px;
}


.service-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 40px;

    font-weight: 500;
}


.service-card-copy > p {

    margin-top: 17px;

    color:
        var(--text-soft);

    font-size: 12px;

    line-height: 1.8;
}


.service-card ul {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        11px 15px;

    margin-top: 25px;
}


.service-card li {

    position: relative;

    padding-left: 20px;

    font-size: 11px;

    font-weight: 600;
}


.service-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color:
        var(--orange-2);
}


.service-card-it li::before {
    color: var(--purple);
}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 30px;

    color:
        var(--orange-2);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.service-card-it
.service-link {
    color: var(--purple);
}


.service-link i {
    transition: transform .3s ease;
}


.service-link:hover i {
    transform: translateX(6px);
}


.service-image {
    overflow: hidden;
}


.service-image img {

    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;
}


.service-card:hover
.service-image img {

    transform:
        scale(1.06);
}


/* =========================================================
   DIGITAL DASHBOARD
========================================================= */

.service-digital {

    display: grid;

    place-items: center;

    padding: 50px;

    background:

        radial-gradient(
            circle at 75% 22%,
            rgba(115,87,217,.42),
            transparent 36%
        ),

        radial-gradient(
            circle at 20% 90%,
            rgba(63,130,209,.25),
            transparent 32%
        ),

        #10223f;
}


.digital-dashboard {

    width: 100%;

    max-width: 445px;

    overflow: hidden;

    background:
        #09121f;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 14px;

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.4);

    transform:
        perspective(1000px)
        rotateY(-6deg)
        rotateX(2deg);

    transition:
        transform .5s ease;
}


.service-card:hover
.digital-dashboard {

    transform:
        perspective(1000px)
        rotateY(0)
        rotateX(0)
        scale(1.025);
}


.dashboard-top {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    padding:
        14px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


.dashboard-lights {

    display: flex;

    gap: 6px;
}


.dashboard-lights span {

    width: 8px;
    height: 8px;

    border-radius: 50%;
}


.dashboard-lights span:nth-child(1) {
    background: #ff5f56;
}

.dashboard-lights span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-lights span:nth-child(3) {
    background: #27c840;
}


.dashboard-top small {

    color:
        #647b96;

    font-size: 7px;
}


.dashboard-body {

    display: grid;

    grid-template-columns:
        68px 1fr;

    min-height: 280px;
}


.dashboard-sidebar {

    padding:
        25px 14px;

    border-right:
        1px solid
        rgba(255,255,255,.05);
}


.dashboard-sidebar i {

    display: block;

    height: 8px;

    margin-bottom: 17px;

    background:
        rgba(255,255,255,.1);

    border-radius: 50px;
}


.dashboard-main {
    padding: 30px;
}


.dashboard-title {

    width: 45%;
    height: 10px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--purple)
        );
}


.dashboard-small-cards {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

    margin-top: 28px;
}


.dashboard-small-cards span {

    height: 54px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid
        rgba(255,255,255,.055);

    border-radius: 7px;
}


.dashboard-chart {

    height: 110px;

    display: flex;

    align-items: flex-end;

    gap: 9px;

    margin-top: 28px;
}


.dashboard-chart i {

    flex: 1;

    border-radius:
        5px 5px 0 0;

    background:
        linear-gradient(
            180deg,
            var(--purple),
            var(--blue)
        );
}


.dashboard-chart i:nth-child(1){height:28%}
.dashboard-chart i:nth-child(2){height:48%}
.dashboard-chart i:nth-child(3){height:37%}
.dashboard-chart i:nth-child(4){height:69%}
.dashboard-chart i:nth-child(5){height:57%}
.dashboard-chart i:nth-child(6){height:87%}
.dashboard-chart i:nth-child(7){height:72%}


/* =========================================================
   HOW WE HELP
========================================================= */

.help-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.help-decoration-one {

    width: 380px;
    height: 380px;

    top: -200px;
    left: -190px;

    background:
        rgba(115,87,217,.05);
}


.help-decoration-two {

    width: 420px;
    height: 420px;

    right: -220px;
    bottom: -210px;

    background:
        rgba(246,169,27,.06);
}


.help-experience {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;
}


.help-card {

    --help-accent:
        var(--orange);

    --pointer-x:
        50%;

    --pointer-y:
        50%;

    position: relative;

    min-height: 365px;

    padding: 28px;

    overflow: hidden;

    background:
        var(--surface);

    border:
        1px solid
        var(--border);

    border-radius: 21px;

    box-shadow:
        var(--shadow);

    transform-style:
        preserve-3d;

    transition:
        box-shadow .4s ease,
        border-color .4s ease;
}


.help-card-purple {
    --help-accent: var(--purple);
}


.help-card-green {
    --help-accent: var(--green);
}


.help-card-blue {
    --help-accent: var(--blue);
}


.help-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at
            var(--pointer-x)
            var(--pointer-y),
            color-mix(
                in srgb,
                var(--help-accent) 17%,
                transparent
            ),
            transparent 38%
        );

    opacity: 0;

    transition:
        opacity .35s ease;

    pointer-events: none;
}


.help-card::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    transform:
        scaleX(0);

    transform-origin: left;

    background:
        var(--help-accent);

    transition:
        transform .45s ease;
}


.help-card:hover {

    border-color:
        color-mix(
            in srgb,
            var(--help-accent) 35%,
            transparent
        );

    box-shadow:
        var(--shadow-hover);
}


.help-card:hover::before {
    opacity: 1;
}


.help-card:hover::after {
    transform: scaleX(1);
}


.help-card-glow {

    position: absolute;

    width: 190px;
    height: 190px;

    right: -120px;
    bottom: -120px;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--help-accent) 12%,
            transparent
        );

    transition:
        transform .55s ease;
}


.help-card:hover
.help-card-glow {

    transform:
        scale(2.7);
}


.help-card-head {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content:
        space-between;

    align-items: center;
}


.help-number {

    font-family:
        "Playfair Display",
        serif;

    color:
        var(--muted);

    font-size: 28px;

    transition:
        color .3s ease,
        transform .3s ease;
}


.help-arrow {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--help-accent);

    background:
        color-mix(
            in srgb,
            var(--help-accent) 10%,
            transparent
        );

    transition:
        transform .4s ease,
        color .3s ease,
        background .3s ease;
}


.help-card:hover
.help-number {

    color:
        var(--help-accent);

    transform:
        translateX(5px);
}


.help-card:hover
.help-arrow {

    transform:
        rotate(45deg)
        scale(1.08);

    color: #fff;

    background:
        var(--help-accent);
}


.help-icon-wrap {

    position: relative;

    z-index: 2;

    width: 74px;
    height: 74px;

    display: grid;

    place-items: center;

    margin-top: 34px;

    color:
        var(--help-accent);

    font-size: 24px;
}


.help-icon-ring {

    position: absolute;

    inset: 0;

    border:
        1px solid
        color-mix(
            in srgb,
            var(--help-accent) 25%,
            transparent
        );

    border-radius: 50%;

    transition:
        transform .5s ease,
        border-color .5s ease;
}


.help-icon-ring::after {

    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 5px;
    left: 10px;

    border-radius: 50%;

    background:
        var(--help-accent);
}


.help-card:hover
.help-icon-ring {

    transform:
        rotate(160deg)
        scale(1.1);

    border-color:
        var(--help-accent);
}


.help-card:hover
.help-icon-wrap > i {

    animation:
        iconWobble .6s ease;
}


.help-card h3 {

    position: relative;

    z-index: 2;

    margin-top: 23px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 29px;
}


.help-card > p {

    position: relative;

    z-index: 2;

    margin-top: 12px;

    color:
        var(--text-soft);

    font-size: 11px;

    line-height: 1.8;
}


.help-reveal {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 21px;

    transform:
        translateY(12px);

    opacity: .55;

    transition:
        transform .4s ease,
        opacity .4s ease;
}


.help-card:hover
.help-reveal {

    transform:
        translateY(0);

    opacity: 1;
}


.help-reveal span {

    padding:
        6px 9px;

    color:
        var(--help-accent);

    background:
        color-mix(
            in srgb,
            var(--help-accent) 8%,
            transparent
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--help-accent) 15%,
            transparent
        );

    border-radius: 100px;

    font-size: 7px;

    font-weight: 700;
}


/* =========================================================
   PROCESS
========================================================= */

.process-background-grid {

    position: absolute;

    inset: 0;

    opacity: .28;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;
}


.process-intro {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 55px;

    margin-bottom: 75px;
}


.process-intro
.section-title {

    color: #fff;
}


.process-intro > p {

    max-width: 430px;

    color:
        #adbed0;

    font-size: 12px;

    line-height: 1.85;
}


.process-experience {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}


.process-line {

    position: absolute;

    top: 33px;

    left: 12.5%;

    right: 12.5%;

    height: 2px;

    background:
        rgba(255,255,255,.10);
}


.process-line-progress {

    display: block;

    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--purple),
            var(--green),
            var(--blue)
        );

    transition:
        width .55s
        cubic-bezier(.22,.61,.36,1);
}


.process-step {

    --step-accent:
        var(--orange);

    position: relative;

    padding-top: 0;

    cursor: pointer;
}


.process-step-purple {
    --step-accent: #9b83ff;
}


.process-step-green {
    --step-accent: #63c38f;
}


.process-step-blue {
    --step-accent: #6ab0ff;
}


.process-step-trigger {

    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: #fff;

    background: transparent;
}


.process-step-circle {

    width: 67px;
    height: 67px;

    display: grid;

    place-items: center;

    color:
        #becbdd;

    background:
        #102a4c;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 50%;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        box-shadow .4s ease;
}


.process-step-label {

    color:
        #879bb1;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.6px;

    transition:
        color .3s ease;
}


.process-step-body {

    min-height: 285px;

    margin-top: 27px;

    padding:
        28px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid
        rgba(255,255,255,.075);

    border-radius: 19px;

    backdrop-filter:
        blur(8px);

    transform:
        translateY(0);

    transition:
        transform .4s ease,
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.process-step-icon {

    width: 47px;
    height: 47px;

    display: grid;

    place-items: center;

    color:
        var(--step-accent);

    background:
        color-mix(
            in srgb,
            var(--step-accent) 10%,
            transparent
        );

    border-radius: 13px;

    transition:
        transform .4s ease;
}


.process-step-body h3 {

    margin-top: 23px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    font-weight: 500;
}


.process-step-body p {

    margin-top: 12px;

    color:
        #aab9ca;

    font-size: 10px;

    line-height: 1.8;
}


.process-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 20px;
}


.process-tags span {

    padding:
        6px 9px;

    color:
        var(--step-accent);

    background:
        color-mix(
            in srgb,
            var(--step-accent) 8%,
            transparent
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--step-accent) 18%,
            transparent
        );

    border-radius: 100px;

    font-size: 7px;
}


.process-step:hover
.process-step-circle,
.process-step.active
.process-step-circle {

    color:
        #0b1f3a;

    background:
        var(--step-accent);

    transform:
        scale(1.09)
        rotate(-5deg);

    box-shadow:
        0 0 0 8px
        color-mix(
            in srgb,
            var(--step-accent) 11%,
            transparent
        );
}


.process-step:hover
.process-step-label,
.process-step.active
.process-step-label {

    color:
        var(--step-accent);
}


.process-step:hover
.process-step-body,
.process-step.active
.process-step-body {

    transform:
        translateY(-8px);

    background:
        rgba(255,255,255,.075);

    border-color:
        color-mix(
            in srgb,
            var(--step-accent) 33%,
            transparent
        );

    box-shadow:
        0 28px 65px
        rgba(0,0,0,.18);
}


.process-step:hover
.process-step-icon,
.process-step.active
.process-step-icon {

    animation:
        iconWobble .6s ease;
}


.process-assurance {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    margin-top: 28px;

    padding:
        22px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;
}


.process-assurance > div {

    display: flex;

    align-items: center;

    gap: 14px;
}


.process-assurance > div > span {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    color:
        var(--orange);

    background:
        rgba(246,169,27,.10);

    border-radius: 12px;
}


.process-assurance strong {

    display: block;

    font-size: 11px;
}


.process-assurance p {

    margin-top: 3px;

    color:
        #91a5ba;

    font-size: 9px;
}


/* =========================================================
   PROJECT MASTER INTRO
========================================================= */

.projects-master-heading {

    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 60px;
}


.projects-master-heading > p {

    max-width: 460px;

    color:
        var(--text-soft);

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   PROJECT DISCIPLINES
========================================================= */

.discipline-projects {

    position: relative;

    padding:
        100px 0;
}


.civil-projects-section {

    background:
        linear-gradient(
            180deg,
            var(--section-warm),
            #ffffff
        );
}


.it-projects-section {

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--section-purple),
            var(--section-blue)
        );
}


.it-project-orb {

    position: absolute;

    width: 480px;
    height: 480px;

    top: -230px;
    right: -220px;

    border-radius: 50%;

    background:
        rgba(115,87,217,.07);
}


.discipline-heading {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 50px;

    margin-bottom: 42px;
}


.discipline-heading-left {

    display: flex;

    align-items: center;

    gap: 20px;
}


.discipline-icon {

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 18px;

    font-size: 23px;
}


.civil-discipline-icon {

    color:
        var(--orange-2);

    background:
        rgba(246,169,27,.12);
}


.it-discipline-icon {

    color:
        var(--purple);

    background:
        rgba(115,87,217,.12);
}


.discipline-overline {

    display: block;

    margin-bottom: 8px;

    color:
        var(--muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.discipline-heading h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            35px,
            4vw,
            52px
        );

    font-weight: 500;

    line-height: 1;
}


.discipline-heading h2 em {

    color:
        var(--orange-2);

    font-style: italic;
}


.it-projects-section
.discipline-heading h2 em {

    color:
        var(--purple);
}


.discipline-heading > p {

    max-width: 420px;

    color:
        var(--text-soft);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   SHOWCASE PROJECT GRID
========================================================= */

.discipline-project-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(12,1fr);

    grid-auto-flow:
        dense;

    gap: 18px;
}


.showcase-card {

    --project-accent:
        var(--orange);

    position: relative;

    grid-column:
        span 4;

    min-height: 410px;

    overflow: hidden;

    cursor: pointer;

    color: #fff;

    background:
        var(--navy);

    border-radius: 20px;

    box-shadow:
        var(--shadow);

    transition:
        transform .45s cubic-bezier(.22,.61,.36,1),
        box-shadow .45s ease;
}


.it-projects-section
.showcase-card {

    --project-accent:
        #9c86ff;
}


.showcase-large {
    grid-column: span 8;
}


.showcase-wide {
    grid-column: span 8;
}


.showcase-local {

    --project-accent:
        var(--green);
}


.showcase-card::before {

    content: "";

    position: absolute;

    z-index: 4;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background:
        var(--project-accent);

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .45s ease;
}


.showcase-card::after {

    content: "";

    position: absolute;

    z-index: 1;

    width: 280px;
    height: 280px;

    right: -210px;
    top: -210px;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--project-accent) 28%,
            transparent
        );

    transition:
        transform .7s ease;
}


.showcase-card:hover {

    transform:
        translateY(-10px)
        scale(1.008);

    box-shadow:
        0 35px 85px
        rgba(13,35,66,.22);
}


.showcase-card:hover::before {
    transform: scaleX(1);
}


.showcase-card:hover::after {
    transform: scale(2.7);
}


.showcase-image {

    position: absolute;

    inset: 0;
}


.showcase-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .85s cubic-bezier(.22,.61,.36,1),
        filter .55s ease;
}


.showcase-card:hover
.showcase-image img {

    transform:
        scale(1.08);

    filter:
        saturate(1.15)
        contrast(1.04);
}


.showcase-shade {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,15,28,.08),
            rgba(7,22,42,.22) 40%,
            rgba(7,22,42,.94)
        );

    transition:
        background .45s ease;
}


.showcase-card:hover
.showcase-shade {

    background:
        linear-gradient(
            180deg,
            rgba(5,15,28,.02),
            rgba(7,22,42,.18) 35%,
            rgba(7,22,42,.95)
        );
}


.showcase-top {

    position: absolute;

    z-index: 3;

    top: 21px;
    left: 21px;
    right: 21px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;
}


.showcase-top > span {

    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding:
        0 11px;

    color:
        #0f223c;

    background:
        rgba(255,255,255,.92);

    border-radius: 100px;

    backdrop-filter:
        blur(10px);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.showcase-top .local-badge {

    color:
        #fff;

    background:
        rgba(63,155,114,.9);
}


.local-badge i {
    margin-right: 6px;
}


.showcase-top small {

    color:
        rgba(255,255,255,.72);

    font-size: 9px;

    font-weight: 700;
}


.showcase-content {

    position: absolute;

    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 24px;
}


.showcase-content h3 {

    max-width: 580px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            25px,
            2.7vw,
            38px
        );

    font-weight: 500;

    line-height: 1.08;
}


.showcase-content > p {

    margin-top: 8px;

    color:
        #bbc8d7;

    font-size: 9px;
}


.showcase-view {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 19px;

    color:
        #fff;

    background:
        transparent;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.showcase-view > span {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    color:
        #11243c;

    background:
        var(--project-accent);

    border-radius: 50%;

    transition:
        transform .35s ease,
        background .35s ease;
}


.showcase-card:hover
.showcase-view > span {

    animation:
        projectArrowWobble .6s ease;
}


@keyframes projectArrowWobble {

    0% {
        transform: rotate(0);
    }

    25% {
        transform:
            rotate(-12deg)
            scale(1.08);
    }

    50% {
        transform:
            rotate(10deg)
            scale(1.13);
    }

    75% {
        transform:
            rotate(-5deg)
            scale(1.08);
    }

    100% {
        transform:
            rotate(0)
            scale(1);
    }
}


/* =========================================================
   PROJECT MODAL
========================================================= */

.project-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: grid;

    place-items: center;

    padding: 24px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.project-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.project-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(3,10,19,.87);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}


.project-modal-dialog {

    position: relative;

    z-index: 2;

    width:
        min(
            1180px,
            100%
        );

    max-height:
        calc(100vh - 48px);

    display: grid;

    grid-template-columns:
        1.42fr .78fr;

    overflow: hidden;

    background:
        var(--surface);

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 24px;

    box-shadow:
        0 45px 120px
        rgba(0,0,0,.45);

    transform:
        scale(.94)
        translateY(20px);

    transition:
        transform .4s
        cubic-bezier(.22,.61,.36,1);
}


.project-modal.active
.project-modal-dialog {

    transform:
        scale(1)
        translateY(0);
}


.project-modal-close {

    position: absolute;

    z-index: 10;

    top: 18px;
    right: 18px;

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    color: #fff;

    background:
        rgba(7,22,42,.72);

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 50%;

    backdrop-filter:
        blur(10px);

    transition:
        transform .3s ease,
        background .3s ease;
}


.project-modal-close:hover {

    transform: rotate(90deg);

    background:
        var(--orange-2);
}


.project-modal-media {

    position: relative;

    min-height: 620px;

    overflow: hidden;

    background:
        var(--navy);
}


.project-modal-media img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity .25s ease,
        transform .5s ease;
}


.project-modal-image-shade {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent,
            rgba(7,22,42,.27)
        );

    pointer-events: none;
}


.project-modal-counter {

    position: absolute;

    z-index: 3;

    left: 22px;
    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 14px;

    color: #fff;

    background:
        rgba(7,22,42,.68);

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 100px;

    font-size: 9px;

    font-weight: 700;

    backdrop-filter:
        blur(10px);
}


.project-modal-counter i {

    width: 24px;
    height: 1px;

    background:
        var(--orange);
}


.modal-arrow {

    position: absolute;

    z-index: 4;

    top: 50%;

    width: 49px;
    height: 49px;

    display: grid;

    place-items: center;

    color: #fff;

    background:
        rgba(7,22,42,.66);

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;

    backdrop-filter:
        blur(10px);

    transform:
        translateY(-50%);

    transition:
        transform .3s ease,
        color .3s ease,
        background .3s ease;
}


.modal-arrow:hover {

    color:
        #10233d;

    background:
        var(--orange);

    transform:
        translateY(-50%)
        scale(1.1);
}


.modal-arrow-prev {
    left: 18px;
}


.modal-arrow-next {
    right: 18px;
}


.project-modal-content {

    display: flex;

    flex-direction: column;

    justify-content:
        space-between;

    gap: 40px;

    padding:
        70px 42px 36px;

    overflow-y: auto;
}


.modal-project-category {

    display: inline-flex;

    align-items: center;

    padding:
        7px 11px;

    color:
        #10233d;

    background:
        var(--orange);

    border-radius: 100px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.modal-project-type {

    margin-top: 24px;

    color:
        var(--orange-2);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.project-modal-content h2 {

    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            35px,
            4vw,
            52px
        );

    font-weight: 500;

    line-height: 1.03;
}


.modal-project-location {

    margin-top: 15px;

    color:
        var(--green);

    font-size: 9px;

    font-weight: 700;
}


.modal-project-description {

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: 12px;

    line-height: 1.9;
}


.modal-project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}


.modal-project-tags span {

    padding:
        7px 11px;

    color:
        var(--text-soft);

    background:
        var(--surface-2);

    border:
        1px solid
        var(--border);

    border-radius: 100px;

    font-size: 8px;
}


.project-modal-footer {

    padding-top: 24px;

    border-top:
        1px solid
        var(--border);
}


.modal-discipline {

    display: flex;

    align-items: center;

    gap: 13px;
}


.modal-discipline > span {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    color:
        var(--orange-2);

    background:
        rgba(246,169,27,.11);

    border-radius: 12px;
}


.modal-discipline small {

    display: block;

    color:
        var(--muted);

    font-size: 7px;

    letter-spacing: 1px;
}


.modal-discipline strong {

    display: block;

    margin-top: 3px;

    font-size: 11px;
}


.modal-mobile-navigation {
    display: none;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-panel {

    position: relative;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 70px;

    overflow: hidden;

    padding: 70px;

    color: #fff;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(115,87,217,.18),
            transparent 28%
        ),

        radial-gradient(
            circle at 4% 95%,
            rgba(63,155,114,.12),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #0c213d,
            #173d68
        );

    border-radius: 28px;

    box-shadow:
        0 35px 80px
        rgba(13,35,66,.20);
}


.contact-panel::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -260px;
    right: -180px;

    border-radius: 50%;

    background:
        rgba(246,169,27,.12);
}


.contact-copy,
.contact-form {

    position: relative;

    z-index: 2;
}


.contact-eyebrow {
    color: var(--orange);
}


.contact .section-title {
    color: #fff;
}


.contact-description {

    max-width: 500px;

    margin-top: 20px;

    color:
        #b7c7d8;

    font-size: 13px;

    line-height: 1.8;
}


.contact-info {

    display: grid;

    gap: 14px;

    margin-top: 35px;
}


.contact-info > div {

    display: flex;

    align-items: center;

    gap: 13px;
}


.contact-info > div > span {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    color:
        var(--orange);

    background:
        rgba(255,255,255,.08);

    border-radius: 11px;
}


.contact-info small {

    display: block;

    color:
        #91a8c0;

    font-size: 8px;

    letter-spacing: 1px;
}


.contact-info p {

    color:
        #d7e1ec;

    font-size: 11px;
}


.contact-form {

    padding: 35px;

    color:
        #10233d;

    background:
        rgba(255,255,255,.97);

    border-radius: 18px;

    box-shadow:
        0 25px 65px
        rgba(0,0,0,.18);
}


.form-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;
}


.form-group-full {
    grid-column: 1 / -1;
}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 9px;

    font-weight: 700;
}


.form-group input,
.form-group textarea {

    width: 100%;

    color:
        #10233d;

    background:
        #f4f7fa;

    border:
        1px solid
        rgba(13,35,66,.10);

    border-radius: 9px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.form-group input {

    height: 48px;

    padding:
        0 14px;
}


.form-group textarea {

    min-height: 145px;

    padding: 14px;

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        rgba(246,169,27,.62);

    box-shadow:
        0 0 0 4px
        rgba(246,169,27,.10);
}


.contact-form .full-btn {
    margin-top: 18px;
}


.form-note {

    min-height: 20px;

    margin-top: 12px;

    font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        80px 0 24px;

    color:
        #d9e2ed;

    background:
        #061426;

    border-top:
        4px solid
        var(--orange);
}


.footer-main {

    display: grid;

    grid-template-columns:
        1.4fr .7fr .8fr 1.1fr;

    gap: 55px;
}


.footer-logo {

    width: 190px;

  
}


.footer-brand p {

    max-width: 300px;

    margin-top: 20px;

    color:
        #8398b0;

    font-size: 11px;

    line-height: 1.8;
}


.footer h4 {

    margin-bottom: 18px;

    color: #fff;

    font-size: 9px;

    letter-spacing: 1.4px;
}


.footer-links {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-links a {

    margin-bottom: 10px;

    color:
        #8499b0;

    font-size: 10px;

    transition:
        color .3s ease,
        transform .3s ease;
}


.footer-links a:hover {

    color:
        var(--orange);

    transform:
        translateX(4px);
}


.footer-newsletter p {

    color:
        #8499b0;

    font-size: 10px;

    line-height: 1.7;
}


.footer-newsletter form {

    display: flex;

    margin-top: 18px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 8px;
}


.footer-newsletter input {

    flex: 1;

    min-width: 0;

    height: 45px;

    padding:
        0 13px;

    color: #fff;

    background:
        rgba(255,255,255,.04);

    border: 0;
}


.footer-newsletter button {

    width: 45px;

    color:
        #10233d;

    background:
        var(--orange);
}


.footer-bottom {

    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    margin-top: 60px;

    padding-top: 20px;

    color:
        #6f849c;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    font-size: 9px;
}


/* =========================================================
   REVEAL / SEARCH / RIPPLE
========================================================= */

.reveal-item {

    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .75s ease,
        transform .75s ease;
}


.reveal-item.visible {

    opacity: 1;

    transform:
        translateY(0);
}


.search-highlight {

    animation:
        searchFlash 2.2s ease;
}


@keyframes searchFlash {

    20%,
    65% {

        background:
            rgba(246,169,27,.18);

        border-radius: 5px;
    }
}


.surreal-ripple {

    position: absolute;

    z-index: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.3);

    pointer-events: none;

    transform:
        scale(0);

    animation:
        ripple .65s ease-out forwards;
}


@keyframes ripple {

    to {

        transform:
            scale(1);

        opacity: 0;
    }
}


/* =========================================================
   1100
========================================================= */

@media (max-width: 1100px) {

    .premium-hero-inner {
        grid-template-columns: 1fr;
    }


    .premium-hero-services {
        max-width: 830px;
    }


    .about-grid {
        gap: 45px;
    }


    .help-experience {
        grid-template-columns: 1fr 1fr;
    }


    .process-experience {
        grid-template-columns: 1fr 1fr;
    }


    .process-line {
        display: none;
    }


    .process-step-trigger {
        align-items: flex-start;
    }


    .process-step {
        padding-top: 0;
    }


    .discipline-project-grid
    .showcase-card {

        grid-column: span 6;
    }


    .showcase-large,
    .showcase-wide {
        grid-column: span 6 !important;
    }


    .capability-grid {
        grid-template-columns: 1fr 1fr;
    }


    .capability-item:nth-child(2) {
        border-right: 0;
    }


    .project-modal-dialog {
        grid-template-columns: 1.15fr .85fr;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   850
========================================================= */

@media (max-width: 850px) {

    .container {

        width:
            min(
                calc(100% - 40px),
                var(--container)
            );
    }


    .main-nav {

        position: fixed;

        top: 78px;

        left: 20px;
        right: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        background:
            var(--surface);

        border:
            1px solid
            var(--border);

        border-radius: 15px;

        box-shadow:
            var(--shadow-hover);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-15px);

        transition: .3s ease;
    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .nav-link {
        padding: 14px 12px;
    }


    .nav-link::after {
        display: none;
    }


    .hamburger {
        display: flex;
    }


    .header-contact {
        display: none;
    }


    .section {
        padding: 90px 0;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        grid-template-columns: 1fr;
    }


    .service-image,
    .service-digital {
        min-height: 350px;
    }


    .process-intro,
    .projects-master-heading,
    .discipline-heading {

        align-items: flex-start;

        flex-direction: column;
    }


    .contact-panel {
        grid-template-columns: 1fr;
    }


    .project-modal {

        padding: 18px;
    }


    .project-modal-dialog {

        grid-template-columns: 1fr;

        overflow-y: auto;
    }


    .project-modal-media {

        min-height: 420px;

        height: 48vh;
    }


    .project-modal-content {
        padding: 38px 28px 28px;
    }


    .modal-arrow {
        display: none;
    }


    .modal-mobile-navigation {

        display: flex;

        gap: 10px;

        margin-top: 24px;
    }


    .modal-mobile-navigation button {

        flex: 1;

        min-height: 44px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        color:
            var(--text);

        background:
            var(--surface-2);

        border:
            1px solid
            var(--border);

        border-radius: 10px;

        font-size: 8px;

        font-weight: 800;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }


    .site-header {
        padding: 12px 0;
    }


    .nav-logo {

        width: 150px;
        height: 45px;
    }


    .search-box {
        display: none;
    }


    .home-hero {

        min-height: auto;

        padding:
            115px 0 75px;
    }


    .premium-hero-inner {
        gap: 50px;
    }


    .premium-hero-title {

        font-size:
            clamp(
                50px,
                15vw,
                72px
            );

        letter-spacing: -3px;
    }


    .premium-hero-description {
        font-size: 13px;
    }


    .hero-benefits {

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .hero-actions {

        display: grid;

        grid-template-columns: 1fr;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-stats {
        gap: 10px;
    }


    .hero-stat strong {
        font-size: 25px;
    }


    .hero-stat small {
        font-size: 7px;
    }


    .premium-hero-services {
        gap: 10px;
    }


    .hero-service-card {

        min-height: 155px;

        padding:
            20px 12px;

        border-radius: 14px;
    }


    .section {
        padding: 75px 0;
    }


    .section-title {

        font-size:
            clamp(
                39px,
                12vw,
                54px
            );

        letter-spacing: -1.4px;
    }


    .section-heading {
        display: block;
    }


    .section-heading-text {
        margin-top: 20px;
    }


    .about-gallery {

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            260px 180px;
    }


    .about-image-large {

        grid-column: 1 / -1;

        grid-row: auto;
    }


    .capability-grid {
        grid-template-columns: 1fr;
    }


    .capability-item {

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }


    .service-card-copy {
        padding: 28px;
    }


    .service-card h3 {
        font-size: 33px;
    }


    .service-card ul {
        grid-template-columns: 1fr;
    }


    .service-image,
    .service-digital {
        min-height: 290px;
    }


    .dashboard-body {
        min-height: 230px;
    }


    .help-experience {
        grid-template-columns: 1fr;
    }


    .help-card {
        min-height: 315px;
    }


    .process-experience {
        grid-template-columns: 1fr;
    }


    .process-step-trigger {

        flex-direction: row;

        align-items: center;

        justify-content: flex-start;
    }


    .process-step-circle {

        width: 55px;
        height: 55px;
    }


    .process-step-body {
        min-height: 0;
    }


    .process-assurance {

        align-items: stretch;

        flex-direction: column;
    }


    .process-assurance .btn {
        width: 100%;
    }


    .discipline-heading-left {

        align-items: flex-start;
    }


    .discipline-icon {

        width: 54px;
        height: 54px;
    }


    .discipline-project-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    .discipline-project-grid
    .showcase-card,
    .showcase-large,
    .showcase-wide {

        grid-column:
            auto !important;

        min-height: 405px;
    }


    .showcase-card:hover {

        transform:
            translateY(-5px);
    }


    .showcase-content h3 {
        font-size: 28px;
    }


    .project-modal {
        padding: 10px;
    }


    .project-modal-dialog {

        max-height:
            calc(100dvh - 20px);

        border-radius: 18px;
    }


    .project-modal-media {

        height: 37vh;

        min-height: 280px;
    }


    .project-modal-content {
        padding: 30px 20px 20px;
    }


    .project-modal-content h2 {
        font-size: 35px;
    }


    .contact-panel {

        padding:
            30px 20px;

        border-radius: 20px;
    }


    .form-grid {
        grid-template-columns: 1fr;
    }


    .form-group-full {
        grid-column: auto;
    }


    .contact-form {
        padding: 24px;
    }


    .footer-main {
        grid-template-columns: 1fr;
    }


    .footer-bottom {
        flex-direction: column;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 420px) {

    .premium-hero-services {
        grid-template-columns: 1fr;
    }


    .hero-stats {
        grid-template-columns: 1fr;
    }


    .hero-stat {

        padding-bottom: 13px;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }


    .hero-stat:not(:last-child)::after {
        display: none;
    }


    .about-gallery {

        grid-template-columns: 1fr;

        grid-template-rows:
            250px 190px 190px;
    }


    .about-image-large {
        grid-column: auto;
    }

}


/* =========================================================
   DARK VARIATION
========================================================= */

@media (prefers-color-scheme: dark) {

    .civil-projects-section {

        background:
            linear-gradient(
                180deg,
                #211f18,
                #0d213a
            );
    }


    .it-projects-section {

        background:
            linear-gradient(
                135deg,
                #181f3c,
                #102944
            );
    }


    .services {

        background:
            linear-gradient(
                180deg,
                #102944,
                #0d213a
            );
    }


    .help {

        background:
            linear-gradient(
                135deg,
                #0d213a,
                #242318
            );
    }


    .contact {

        background:
            #0a1c33;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

}

/* =========================================================
   FLOATING CONTACT WIDGET
========================================================= */

.floating-contact{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:3000;

    display:flex;
    flex-direction:column;
    align-items:flex-end;

    font-family:"Poppins",sans-serif;
}


/* =========================================================
   OPTIONS CONTAINER
========================================================= */

.floating-contact-menu{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:11px;

    margin-bottom:14px;

    opacity:0;
    visibility:hidden;

    transform:
        translateY(18px)
        scale(.94);

    pointer-events:none;

    transition:
        opacity .28s ease,
        transform .32s cubic-bezier(.22,.61,.36,1),
        visibility .28s ease;
}


/* OPEN STATE */

.floating-contact.open
.floating-contact-menu{
    opacity:1;
    visibility:visible;

    transform:
        translateY(0)
        scale(1);

    pointer-events:auto;
}


/* =========================================================
   INDIVIDUAL CONTACT OPTION
========================================================= */

.floating-contact-option{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;

    color:#10233d;
    text-decoration:none;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* stagger animation */

.floating-contact-option:nth-child(1){
    transition-delay:.02s;
}

.floating-contact-option:nth-child(2){
    transition-delay:.05s;
}

.floating-contact-option:nth-child(3){
    transition-delay:.08s;
}


.floating-contact-option:hover{
    transform:translateX(-5px);
}


/* =========================================================
   TEXT LABEL
========================================================= */

.floating-contact-label{
    min-height:38px;

    display:flex;
    align-items:center;

    padding:0 13px;

    border-radius:9px;

    color:#10233d;

    background:#ffffff;

    border:1px solid rgba(13,35,66,.10);

    box-shadow:
        0 10px 30px rgba(13,35,66,.14);

    font-size:9px;
    font-weight:800;

    letter-spacing:.55px;

    white-space:nowrap;
}


/* =========================================================
   SMALL ICON BUTTONS
========================================================= */

.floating-contact-icon{
    width:44px;
    height:44px;

    flex:0 0 44px;

    display:grid;
    place-items:center;

    border-radius:50%;

    color:#ffffff;

    font-size:16px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.floating-contact-option:hover
.floating-contact-icon{
    transform:scale(1.08);

    box-shadow:
        0 16px 34px rgba(0,0,0,.24);
}


/* EMAIL */

.floating-contact-icon.email{
    background:
        linear-gradient(
            135deg,
            #3f82d1,
            #245fa5
        );
}


/* WHATSAPP */

.floating-contact-icon.whatsapp{
    background:
        linear-gradient(
            135deg,
            #25d366,
            #128c4a
        );
}


/* CALL */

.floating-contact-icon.call{
    background:
        linear-gradient(
            135deg,
            #3f9b72,
            #257353
        );
}


/* =========================================================
   MAIN GREEN BUTTON
========================================================= */

.floating-contact-toggle{
    position:relative;

    width:62px;
    height:62px;

    display:grid;
    place-items:center;

    border:0;
    border-radius:50%;

    cursor:pointer;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            #36c879,
            #169453
        );

    box-shadow:
        0 17px 40px rgba(22,148,83,.34);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        background .28s ease;
}


.floating-contact-toggle:hover{
    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 22px 46px rgba(22,148,83,.42);
}


/* subtle pulse */

.floating-contact-toggle::before{
    content:"";

    position:absolute;

    inset:-7px;

    border-radius:50%;

    border:
        1px solid rgba(54,200,121,.32);

    animation:
        floatingContactPulse
        2.4s ease-out infinite;
}


@keyframes floatingContactPulse{

    0%{
        opacity:.8;
        transform:scale(.88);
    }

    70%{
        opacity:0;
        transform:scale(1.25);
    }

    100%{
        opacity:0;
        transform:scale(1.25);
    }

}


/* =========================================================
   ICON SWITCH
========================================================= */

.contact-open-icon,
.contact-close-icon{
    position:absolute;

    transition:
        opacity .25s ease,
        transform .3s ease;
}


.contact-open-icon{
    opacity:1;
    transform:
        rotate(0deg)
        scale(1);
}


.contact-close-icon{
    opacity:0;
    transform:
        rotate(-90deg)
        scale(.7);
}


.floating-contact.open
.contact-open-icon{
    opacity:0;

    transform:
        rotate(90deg)
        scale(.7);
}


.floating-contact.open
.contact-close-icon{
    opacity:1;

    transform:
        rotate(0deg)
        scale(1);
}


/* =========================================================
   DARK MODE
========================================================= */

@media(prefers-color-scheme:dark){

    .floating-contact-label{

        color:#f5f8fb;

        background:#0d213a;

        border-color:
            rgba(255,255,255,.10);

        box-shadow:
            0 10px 30px rgba(0,0,0,.28);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){

    .floating-contact{
        right:18px;
        bottom:18px;
    }


    .floating-contact-toggle{
        width:56px;
        height:56px;

        font-size:15px;
    }


    .floating-contact-icon{
        width:41px;
        height:41px;

        flex-basis:41px;

        font-size:14px;
    }


    .floating-contact-label{
        min-height:36px;

        padding:0 11px;

        font-size:8px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media(max-width:380px){

    .floating-contact{
        right:14px;
        bottom:14px;
    }


    .floating-contact-label{
        display:none;
    }


    .floating-contact-menu{
        gap:9px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    .floating-contact-toggle::before{
        animation:none;
    }


    .floating-contact-menu,
    .floating-contact-option,
    .floating-contact-toggle,
    .floating-contact-icon,
    .contact-open-icon,
    .contact-close-icon{
        transition:none;
    }

}

/* =========================================================
   HERO TRIANGLE — FINAL RESPONSIVE OVERRIDES
   Keep this block at the END of style.css
========================================================= */

@media (max-width: 1100px) {

    .premium-hero-services {

        width: min(100%, 780px);

        max-width: 780px;

        margin-top: 28px;

        justify-self: start;
    }


    .hero-service-card {

        min-height: 195px;
    }

}


@media (max-width: 850px) {

    .premium-hero-services {

        width: min(100%, 680px);

        max-width: 680px;

        margin:
            42px auto 0;

        gap: 16px;
    }


    .premium-hero-services
    .hero-service-card:nth-child(3) {

        width:
            calc(50% - 8px);
    }


    .hero-service-card {

        min-height: 180px;

        padding:
            26px 20px;

        border-radius: 19px;
    }


    .hero-service-icon {

        min-height: 38px;

        margin-bottom: 12px;

        font-size: 27px;
    }

}


@media (max-width: 600px) {

    .premium-hero-services {

        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        grid-template-areas:
            "engineering digital"
            "hire hire";

        gap: 11px;

        margin-top: 36px;
    }


    .premium-hero-services
    .hero-service-card:nth-child(3) {

        width:
            calc(50% - 5.5px);

        justify-self:
            center;
    }


    .hero-service-card {

        min-height: 160px;

        padding:
            22px 13px;

        border-radius: 16px;
    }


    .hero-card-index {

        top: 11px;
        left: 12px;

        font-size: 7px;
    }


    .hero-service-icon {

        min-height: 34px;

        margin-bottom: 10px;

        font-size: 24px;
    }


    .hero-service-card h3 {

        font-size: 11px;

        line-height: 1.35;
    }


    .hero-service-card p {

        margin-top: 7px;

        font-size: 8px;

        line-height: 1.5;
    }


    .hero-card-arrow {

        width: 27px;
        height: 27px;

        top: 9px;
        right: 9px;

        font-size: 8px;
    }

}


@media (max-width: 420px) {

    .premium-hero-services {

        grid-template-columns: 1fr;

        grid-template-areas:
            "engineering"
            "digital"
            "hire";

        gap: 11px;
    }


    .premium-hero-services
    .hero-service-card:nth-child(1),
    .premium-hero-services
    .hero-service-card:nth-child(2),
    .premium-hero-services
    .hero-service-card:nth-child(3) {

        width: 100%;

        justify-self: stretch;
    }


    .hero-service-card {

        min-height: 145px;
    }


    .premium-hero-services::before {

        display: none;
    }

}


@media (max-width: 360px) {

    .hero-service-card {

        min-height: 138px;

        padding:
            20px 12px;
    }


    .hero-service-icon {

        font-size: 22px;
    }


    .hero-service-card h3 {

        font-size: 10px;
    }


    .hero-service-card p {

        font-size: 7.5px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .hero-service-card,
    .hero-service-card::before,
    .hero-service-card::after,
    .hero-card-arrow {

        transition: none;
    }


    .hero-service-card:hover {

        transform: none;
    }


    .hero-service-card:hover
    .hero-service-icon {

        animation: none;
    }

}

