/* Deeng Construction – optimized against the uploaded Blade views. */
.deeng-navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 72px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, height 0.35s ease
}

.deeng-navbar.deeng-navbar-scrolled {
    height: 68px;
    background: rgba(11, 17, 32, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18)
}

.deeng-logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    z-index: 1001
}

.deeng-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 0;
    margin: 0
}

.deeng-nav-links li a {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease
}

.deeng-nav-links li a:hover {
    opacity: 0.7
}

.deeng-btn-nav {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 12px 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.deeng-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22)
}

.deeng-btn-icon-dark {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 10px
}

.deeng-btn-icon-dark i {
    transform: rotate(-45deg)
}

.deeng-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.deeng-menu-toggle span {
    width: 18px;
    height: 2px;
    background: #000000;
    border-radius: 20px;
    transition: transform 0.35s ease, opacity 0.35s ease
}

.deeng-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.deeng-menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.deeng-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.deeng-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.55);
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease
}

.deeng-mobile-overlay.active {
    opacity: 1;
    pointer-events: auto
}

@media (max-width:900px) {
    .deeng-navbar {
        height: 70px;
        padding: 0 22px
    }

    .deeng-navbar.deeng-navbar-scrolled {
        height: 66px
    }

    .deeng-menu-toggle {
        display: flex
    }

    .deeng-btn-nav {
        display: none
    }

    .deeng-nav-links {
        position: fixed;
        top: 82px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: calc(100% - 32px);
        max-width: 430px;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 22px;
        padding: 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
        z-index: 1000;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35)
    }

    .deeng-nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0)
    }

    .deeng-nav-links li {
        width: 100%
    }

    .deeng-nav-links li a {
        width: 100%;
        display: flex;
        padding: 15px 16px;
        border-radius: 14px;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.04)
    }

    .deeng-nav-links li a:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1)
    }

    .deeng-nav-links::after {
        content: "Get in touch";
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        padding: 15px 18px;
        border-radius: 999px;
        background: #ffffff;
        color: #000000;
        font-size: 14px;
        font-weight: 800
    }
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}





.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 20% 100%;
    z-index: 2;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5% 60px 5%
}

.hero-left {
    max-width: 650px
}

.title {
    font-size: clamp(28px, 3vw, 52px);
    font-weight: 100;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 50px
}

.hero-left-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px
}

.glass-slider {
    width: 360px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column
}

.dot {
    width: 20px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease
}

.dot.active {
    background-color: var(--primary-accent);
    width: 30px
}

.showcase-section {
    padding: 120px 5vw;
    background-color: #ffffff;
    overflow: hidden;
    width: 100vw
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative
}

.sc-card {
    border-radius: 20px;
    height: 480px;
    position: relative;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
    will-change: transform, opacity
}

.sc-card:nth-child(1) {
    z-index: 3;
    opacity: 0;
    transform: translateY(40px)
}

.sc-card:nth-child(2) {
    z-index: 2;
    transform: translateX(calc(-100% - 30px)) scale(0.92);
    opacity: 0
}

.sc-card:nth-child(3) {
    z-index: 1;
    transform: translateX(calc(-200% - 60px)) scale(0.85);
    opacity: 0
}

.showcase-section.is-visible .sc-card:nth-child(1) {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0s
}

.showcase-section.is-visible .sc-card:nth-child(2) {
    transform: translateX(0) scale(1);
    opacity: 1;
    transition-delay: 0.15s
}

.showcase-section.is-visible .sc-card:nth-child(3) {
    transform: translateX(0) scale(1);
    opacity: 1;
    transition-delay: 0.3s
}

.sc-video .sc-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sc-play-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease
}

.sc-play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4)
}

.sc-dark {
    background-color: #0b1120;
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.sc-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3
}

.sc-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px
}

.sc-light {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column
}

.sc-light-img-wrap {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px
}

.sc-light-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sc-light-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    padding: 0 10px
}

@media (max-width:1024px) {

    .hero-section {
            min-height: 400px;
        }

    .bg-text {
        font-size: 35vw;
        top: 25%
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
        padding-bottom: 40px;
        padding-top: 120px
    }

    .hero-left-bottom {
        flex-direction: column;
        gap: 30px
    }

    .glass-slider {
        width: 100%;
        max-width: 400px
    }

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

    .sc-card:nth-child(2),
    .sc-card:nth-child(3) {
        transform: translateY(40px) scale(0.95)
    }

    .showcase-section.is-visible .sc-card:nth-child(2),
    .showcase-section.is-visible .sc-card:nth-child(3) {
        transform: translateY(0) scale(1)
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2
}

:root {
    --cap-bg: #0f1d34;
    --cap-panel: #283852;
    --cap-text: #ffffff;
    --cap-muted: rgba(255, 255, 255, 0.55);
    --cap-line: rgba(255, 255, 255, 0.22);
    --cap-cream: #fff4e5;
    --cap-radius: 18px
}

.capability-section {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.045), transparent 28%), linear-gradient(135deg, #0f1d34 0%, #101f38 60%, #0c182d 100%);
    display: flex;
    align-items: center;
    padding: 90px 24px;
    overflow: hidden;
    color: var(--cap-text)
}

.capability-container {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.25fr;
    gap: 90px;
    align-items: center
}

.left-content {
    position: relative;
    min-height: 610px
}

.left-content h1 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.98;
    letter-spacing: -2.8px;
    max-width: 480px;
    margin-bottom: 55px;
    font-weight: 800
}

.image-stage {
    position: relative;
    width: min(430px, 100%);
    height: 360px;
    border-radius: var(--cap-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.33);
    isolation: isolate
}

.image-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 45%, transparent 65%);
    transform: translateX(-130%);
    transition: transform 0.9s cubic-bezier(.22, 1, .36, 1);
    z-index: 3;
    pointer-events: none
}

.image-stage.is-changing::after {
    transform: translateX(130%)
}

.service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08) translateY(20px);
    filter: blur(9px) saturate(0.9);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 1.15s cubic-bezier(.22, 1, .36, 1), filter 0.85s cubic-bezier(.22, 1, .36, 1)
}

.service-image.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) saturate(1.05);
    z-index: 2
}

.image-caption-wrap {
    position: relative;
    width: min(430px, 100%);
    margin-top: 28px;
    min-height: 105px
}

.service-caption {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(22px);
    filter: blur(5px);
    transition: opacity 0.55s ease, transform 0.75s cubic-bezier(.22, 1, .36, 1), filter 0.65s ease
}

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

.service-caption h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 800
}

.service-caption p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600
}

.service-list {
    border-top: 1px solid var(--cap-line)
}

.service-row {
    position: relative;
    height: 92px;
    display: grid;
    grid-template-columns: 90px 1fr 70px;
    align-items: center;
    border-bottom: 1px solid var(--cap-line);
    cursor: pointer;
    padding: 0 30px;
    isolation: isolate
}

.service-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
    z-index: -1
}

.service-row:hover::before,
.service-row.active::before {
    transform: scaleX(1)
}

.arrow-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    display: grid;
    place-items: center;
    color: var(--cap-muted);
    font-size: 29px;
    transition: all 0.45s cubic-bezier(.22, 1, .36, 1)
}

.service-row.active .arrow-circle,
.service-row:hover .arrow-circle {
    background: var(--cap-cream);
    border-color: var(--cap-cream);
    color: #121212;
    transform: translateX(-7px) rotate(180deg)
}

.service-title {
    font-size: clamp(19px, 2vw, 23px);
    font-weight: 800;
    color: var(--cap-muted);
    justify-self: center;
    transition: color 0.45s ease, transform 0.45s ease
}

.service-row.active .service-title,
.service-row:hover .service-title {
    color: #ffffff;
    transform: translateX(-8px)
}

.service-number {
    font-size: 29px;
    font-weight: 900;
    color: var(--cap-muted);
    letter-spacing: -1px;
    transition: color 0.45s ease, transform 0.45s ease;
    justify-self: end
}

.service-row.active .service-number,
.service-row:hover .service-number {
    color: #ffffff;
    transform: translateX(6px)
}

@media (max-width:1000px) {
    .capability-container {
        grid-template-columns: 1fr
    }

    .left-content {
        min-height: auto
    }
}

.arch-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5vw;
    overflow: hidden
}

.arch-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.arch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2
}

.arch-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto
}

.arch-text h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px
}

.arch-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px
}

.arch-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    color: white
}

.glass-card:nth-child(2) {
    margin-top: 60px
}

.glass-card h4 {
    font-size: 18px;
    margin-bottom: 15px
}

.glass-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6
}

@media (max-width:1024px) {
    .arch-container {
        grid-template-columns: 1fr
    }

    .arch-cards {
        margin-top: 40px
    }
}

:root {
    --font-main: "Inter", sans-serif;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-color: #0d1219;
    --primary-accent: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15)
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

.srv-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
    color: #ffffff;
    background-color: #0b1120
}

.srv-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden
}

.srv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: srvZoomOut 10s ease-out forwards
}

.srv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2
}

.srv-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end
}

.srv-hero-content {
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: srvFadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards
}

.srv-hero-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9)
}

.srv-hero-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: #ffffff
}

.srv-hero-action-row {
    display: flex;
    align-items: flex-start;
    gap: 50px
}

.srv-hero-desc {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6%
}