/* =========================================================
                HERO SECTION
========================================================= */

.lux-hero {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding:
        210px 0 120px;

    background:
        #f4f8fb;

}

/* =========================================================
                BACKGROUND IMAGE
========================================================= */

.hero-bg {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.03);

    filter:
        saturate(1.05) brightness(1.02);

}

/* =========================================================
                OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(244, 248, 251, 0.96) 10%,
            rgba(244, 248, 251, 0.88) 38%,
            rgba(244, 248, 251, 0.40) 72%,
            rgba(244, 248, 251, 0.18) 100%);

}

/* =========================================================
                GRID EFFECT
========================================================= */

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(4, 69, 105, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 69, 105, 0.03) 1px, transparent 1px);

    background-size: 90px 90px;

    opacity: 0.5;

}

/* =========================================================
                GLOW EFFECT
========================================================= */

.hero-glow {

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(5, 143, 72, 0.14),
            transparent);

    top: -250px;
    left: -180px;

    filter: blur(70px);

}

/* =========================================================
                CONTAINER
========================================================= */

.hero-container {

    width: 100%;
    max-width: 1450px;

    margin: auto;

    padding: 0 24px;

    position: relative;
    z-index: 5;

}

/* =========================================================
                CONTENT
========================================================= */

.hero-content {

    max-width: 800px;

}

/* =========================================================
                LABEL
========================================================= */

.hero-label {

    width: fit-content;

    display: flex;
    align-items: center;
    gap: 12px;

    padding:
        14px 22px;

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.78);

    border:
        1px solid rgba(4, 69, 105, 0.06);

    backdrop-filter: blur(16px);

    box-shadow:
        0 10px 30px rgba(4, 69, 105, 0.05);

    margin-bottom: 20px;

}

.hero-label-dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #058F48;

    position: relative;

}

.hero-label-dot::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background: #058F48;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);
        opacity: 0.8;

    }

    100% {

        transform: scale(2.4);
        opacity: 0;

    }

}

.hero-label p {

    color: #044569;

    font-size: 14px;
    font-weight: 700;

}

/* =========================================================
                HEADING
========================================================= */

.hero-heading {

    font-size: 82px;

    line-height: 0.94;

    font-weight: 800;

    letter-spacing: -5px;

    color: #102131;

    margin-bottom: 34px;

    font-family: 'Outfit', sans-serif;

}

.hero-heading span {

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* =========================================================
                DESCRIPTION
========================================================= */

.hero-description {

    max-width: 620px;

    color: #262a2e;

    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 20px;

}

/* =========================================================
                BUTTONS
========================================================= */

.hero-actions {

    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}

/* PRIMARY BUTTON */

.hero-primary-btn {

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 14px;

    padding:
        22px 38px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 24px 50px rgba(4, 69, 105, 0.18);

    transition: 0.5s ease;

}

.hero-primary-btn:hover {

    transform:
        translateY(-6px);

}

/* SECONDARY BUTTON */

.hero-secondary-btn {

    display: flex;
    align-items: center;
    gap: 14px;

    padding:
        22px 34px;

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid rgba(4, 69, 105, 0.06);

    backdrop-filter: blur(16px);

    color: #102131;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(4, 69, 105, 0.05);

    transition: 0.5s ease;

}

.hero-secondary-btn:hover {

    transform:
        translateY(-6px);

    background:
        #fff;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .hero-heading {

        font-size: 72px;

    }

}

@media(max-width:768px) {

    .lux-hero {

        padding:
            180px 0 100px;

    }

    .hero-heading {

        font-size: 54px;

        line-height: 1;

        letter-spacing: -2px;

    }

    .hero-description {

        font-size: 16px;

    }

    .hero-bg {

        object-position: 72% center;

    }

}

@media(max-width:500px) {

    .hero-container {

        padding: 0 18px;

    }

    .hero-heading {

        font-size: 40px;

    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-primary-btn,
    .hero-secondary-btn {

        width: 100%;

        justify-content: center;

    }

    .hero-bg {

        object-position: 78% center;

        transform: scale(1.08);

    }

}

/* =========================================================
                TRUST SHOWCASE SECTION
========================================================= */

.trust-showcase {

    position: relative;

    padding:
        130px 0;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f7fafc);

}

/* =========================================================
                BACKGROUND EFFECTS
========================================================= */

.trust-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(4, 69, 105, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 69, 105, 0.03) 1px, transparent 1px);

    background-size: 90px 90px;

    opacity: 0.45;

}

.trust-glow {

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(5, 143, 72, 0.10),
            transparent);

    top: -300px;
    right: -250px;

    filter: blur(80px);

}

/* =========================================================
                CONTAINER
========================================================= */

.trust-container {

    width: 100%;
    max-width: 1450px;

    margin: auto;

    padding: 0 24px;

    position: relative;
    z-index: 5;

}

/* =========================================================
                TOP AREA
========================================================= */

.trust-top {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 70px;

}

/* =========================================================
                LABEL
========================================================= */

.trust-label {

    width: fit-content;

    display: flex;
    align-items: center;
    gap: 12px;

    padding:
        14px 22px;

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.84);

    border:
        1px solid rgba(4, 69, 105, 0.06);

    backdrop-filter: blur(16px);

    box-shadow:
        0 10px 30px rgba(4, 69, 105, 0.05);

    margin-bottom: 32px;

}

.trust-dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #058F48;

    position: relative;

}

.trust-dot::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background: #058F48;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(1);
        opacity: 0.8;

    }

    100% {

        transform: scale(2.4);
        opacity: 0;

    }

}

.trust-label p {

    color: #044569;

    font-size: 14px;
    font-weight: 700;

}

/* =========================================================
                HEADING
========================================================= */

.trust-heading {

    font-size: 82px;

    line-height: 0.94;

    letter-spacing: -4px;

    color: #102131;

    font-weight: 800;

    font-family: 'Outfit', sans-serif;

}

.trust-heading span {

    display: block;

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* =========================================================
                DESCRIPTION
========================================================= */

.trust-right p {

    color: #647381;

    font-size: 18px;
    line-height: 1.95;

}

.trust-right p:last-child {

    margin-top: 24px;

}

/* =========================================================
                VISUAL STRIP
========================================================= */

.trust-visual-strip {

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 26px;

    align-items: stretch;

}

/* =========================================================
                IMAGE SIDE
========================================================= */

.trust-image {

    position: relative;

    border-radius: 38px;

    overflow: hidden;

    min-height: 620px;

    box-shadow:
        0 35px 90px rgba(4, 69, 105, 0.12);

}

.trust-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1s ease;

}

.trust-image:hover img {

    transform:
        scale(1.04);

}

/* OVERLAY */

.trust-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(4, 69, 105, 0.75),
            rgba(4, 69, 105, 0.10),
            transparent);

}

/* FLOATING CONTENT */

.trust-floating-content {

    position: absolute;

    left: 40px;
    bottom: 40px;

    max-width: 460px;

    z-index: 5;

}

.trust-floating-content h3 {

    color: #fff;

    font-size: 54px;

    line-height: 0.96;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 22px;

    font-family: 'Outfit', sans-serif;

}

.trust-floating-content p {

    color: rgba(255, 255, 255, 0.84);

    font-size: 17px;
    line-height: 1.9;

}

/* =========================================================
                RIGHT PANEL
========================================================= */

.trust-panel {

    display: flex;
    flex-direction: column;

    gap: 24px;

}

/* METRIC */

.trust-metric {

    padding:
        42px 38px;

    border-radius: 34px;

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    box-shadow:
        0 30px 70px rgba(4, 69, 105, 0.16);

}

.trust-metric h2 {

    color: #fff;

    font-size: 88px;
    font-weight: 800;

    line-height: 1;

    margin-bottom: 18px;

    font-family: 'Outfit', sans-serif;

}

.trust-metric p {

    color: rgba(255, 255, 255, 0.86);

    font-size: 16px;
    line-height: 1.9;

}

/* =========================================================
                FEATURES
========================================================= */

.trust-features {

    flex: 1;

    padding:
        36px;

    border-radius: 34px;

    background:
        rgba(255, 255, 255, 0.84);

    border:
        1px solid rgba(4, 69, 105, 0.06);

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(4, 69, 105, 0.06);

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

}

/* FEATURE */

.trust-feature {

    display: flex;
    align-items: center;
    gap: 12px;

}

.trust-feature span {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

}

.trust-feature p {

    color: #102131;

    font-size: 15px;
    font-weight: 600;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .trust-heading {

        font-size: 64px;

    }

}

@media(max-width:992px) {

    .trust-top {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .trust-visual-strip {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .trust-showcase {

        padding:
            100px 0;

    }

    .trust-heading {

        font-size: 44px;

        line-height: 1;

        letter-spacing: -2px;

    }

    .trust-right p {

        font-size: 16px;

    }

    .trust-image {

        min-height: 520px;

        border-radius: 30px;

    }

    .trust-image img {

        object-position: 68% center;

    }

    .trust-floating-content {

        left: 24px;
        right: 24px;
        bottom: 24px;

    }

    .trust-floating-content h3 {

        font-size: 38px;

    }

    .trust-panel {

        gap: 18px;

    }

    .trust-metric {

        padding:
            34px 28px;

        border-radius: 28px;

    }

    .trust-metric h2 {

        font-size: 68px;

    }

    .trust-features {

        grid-template-columns: 1fr;

        padding:
            30px;

        border-radius: 28px;

    }

}

@media(max-width:500px) {

    .trust-container {

        padding: 0 18px;

    }

    .trust-heading {

        font-size: 36px;

    }

    .trust-image {

        min-height: 460px;

    }

    .trust-image img {

        object-position: 72% center;

    }

    .trust-floating-content h3 {

        font-size: 32px;

    }

}




/* =========================================================
                MODERN SERVICES
========================================================= */

.modern-services {

    position: relative;

    padding:
        150px 0;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f5f9fc);

}

/* =========================================================
                BACKGROUND
========================================================= */

.modern-services-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(4, 69, 105, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 69, 105, 0.03) 1px, transparent 1px);

    background-size: 90px 90px;

    opacity: 0.4;

}

.modern-services-glow {

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(5, 143, 72, 0.10),
            transparent);

    top: -300px;
    right: -220px;

    filter: blur(90px);

}

/* =========================================================
                CONTAINER
========================================================= */

.modern-services-container {

    width: 100%;
    max-width: 1450px;

    margin: auto;

    padding: 0 24px;

    position: relative;
    z-index: 5;

}

/* =========================================================
                TOP AREA
========================================================= */

.modern-services-top {

    text-align: center;

    max-width: 920px;

    margin:
        0 auto 90px;

}

/* LABEL */

.modern-services-label {

    width: fit-content;

    margin:
        0 auto 34px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding:
        14px 22px;

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid rgba(4, 69, 105, 0.06);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 30px rgba(4, 69, 105, 0.05);

}

.modern-services-label span {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #058F48;

}

.modern-services-label p {

    color: #044569;

    font-size: 14px;
    font-weight: 700;

}

/* =========================================================
                HEADING
========================================================= */

.modern-services-heading {

    font-size: 88px;

    line-height: 0.92;

    letter-spacing: -5px;

    color: #102131;

    font-weight: 800;

    margin-bottom: 34px;

    font-family: 'Outfit', sans-serif;

}

.modern-services-heading span {

    /* display: block; */

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* DESCRIPTION */

.modern-services-description {

    max-width: 700px;

    margin: auto;

    color: #647381;

    font-size: 18px;
    line-height: 1.9;

}

/* =========================================================
                GRID
========================================================= */

.modern-services-grid-layout {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 28px;

}

/* =========================================================
                CARD
========================================================= */

.modern-service-card {

    position: relative;

    min-height: 470px;

    padding:
        36px;

    border-radius: 34px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.95),
            rgba(245, 249, 252, 0.95));

    border:
        1px solid rgba(4, 69, 105, 0.06);

    overflow: hidden;

    transition: 0.5s ease;

    display: flex;
    flex-direction: column;

    box-shadow:
        0 25px 60px rgba(4, 69, 105, 0.06);

}

/* ACTIVE CARD */

.active-card {

    background:
        linear-gradient(145deg,
            #044569,
            #058F48);

    box-shadow:
        0 40px 90px rgba(4, 69, 105, 0.18);

}

.active-card h3,
.active-card p,
.active-card .service-card-number,
.active-card .service-card-footer span {

    color: #fff !important;

}

.active-card .service-card-icon {

    background:
        rgba(255, 255, 255, 0.14);

    border:
        1px solid rgba(255, 255, 255, 0.14);

}

/* HOVER */

.modern-service-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 45px 100px rgba(4, 69, 105, 0.12);

}

/* =========================================================
                NUMBER
========================================================= */

.service-card-number {

    position: absolute;

    top: 24px;
    right: 28px;

    color: rgba(4, 69, 105, 0.08);

    font-size: 72px;
    font-weight: 800;

    font-family: 'Outfit', sans-serif;

}

/* =========================================================
                ICON
========================================================= */

.service-card-icon {

    width: 84px;
    height: 84px;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 32px;

    margin-bottom: 46px;

    box-shadow:
        0 20px 40px rgba(4, 69, 105, 0.12);

}

/* =========================================================
                CONTENT
========================================================= */

.service-card-content {

    flex: 1;

}

.service-card-content h3 {

    color: #102131;

    font-size: 34px;
    font-weight: 700;

    line-height: 1.05;

    margin-bottom: 22px;

}

.service-card-content p {

    color: #647381;

    font-size: 16px;
    line-height: 1.9;

}

/* =========================================================
                FOOTER
========================================================= */

.service-card-footer {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 28px;

    border-top:
        1px solid rgba(4, 69, 105, 0.08);

}

.active-card .service-card-footer {

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

}

.service-card-footer span {

    color: #058F48;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

}

.service-card-footer button {

    width: 54px;
    height: 54px;

    border: none;
    outline: none;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #044569,
            #058F48);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition: 0.4s ease;

}

.active-card .service-card-footer button {

    background:
        rgba(255, 255, 255, 0.14);

    border:
        1px solid rgba(255, 255, 255, 0.14);

}

.service-card-footer button:hover {

    transform:
        rotate(-45deg);

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .modern-services-grid-layout {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .modern-services-heading {

        font-size: 70px;

    }

}

@media(max-width:768px) {

    .modern-services {

        padding:
            100px 0;

    }

    .modern-services-heading {

        font-size: 48px;

        line-height: 1;

        letter-spacing: -2px;

    }

    .modern-services-description {

        font-size: 16px;

    }

    .modern-services-grid-layout {

        grid-template-columns: 1fr;

    }

    .modern-service-card {

        min-height: auto;

        padding:
            32px 28px;

        border-radius: 28px;

    }

    .service-card-content h3 {

        font-size: 30px;

    }

}

@media(max-width:500px) {

    .modern-services-container {

        padding: 0 18px;

    }

    .modern-services-heading {

        font-size: 38px;

    }

    .service-card-number {

        font-size: 54px;

    }

    .service-card-icon {

        width: 72px;
        height: 72px;

        border-radius: 24px;

        font-size: 28px;

    }

}




/* Process Section Start */

.process-section {
    /* Implements the user's requested gradient: 0deg means bottom (primary) to top (secondary) */
    /* This translates to secondary-color at the top, primary-color at the bottom */
    background: linear-gradient(0deg, #3987b1, rgb(183, 231, 206));
    padding: 80px 0;
    /* Using user's gap concept for overall bottom spacing */
    margin-bottom: 9vh;
}

.process-inner-section {
    display: flex;
    /* Using user's max-width and center margin */
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* ----------------- Left Column: Sticky Image (Desktop) ----------------- */

.process-container-section {
    width: 80%;
    /* Sticky positioning for the image column */
    position: sticky;
    top: 110px;
    align-self: flex-start;

    /* Ensures the sticky box has a small offset from the content below it */
    margin-bottom: -230px;
}

.widget-image-container {
    text-align: center;
}

.container-img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    width: 100%;

    /* REMOVED SHADOW as requested */
    /* Increased size for more visual impact, but still responsive */
    transform: scale(1.1);
    /* Slightly larger */
    transform-origin: top left;
    /* Scale from top-left */
}

/* ----------------- Right Column: Scrollable Content (Desktop) ----------------- */

.process-right-section {
    width: 42%;
    display: flex;
    flex-direction: column;

    /* Gap equivalent to the 4% space between the 60% and 36% columns */

    /* User's padding idea */
    padding-top: 10vh;
}


/* ----------------- Bottom Visual ----------------- */
.bottom-visual {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 80px;
    border-radius: var(--radius-xl);
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.2); */
}

/* Fallback for the SVG image */
.bottom-visual[src*=".svg"] {
    /* If it's the SVG, we can't show it, so use a placeholder */
    content: url("../../delivery-tuck.png");
    object-fit: cover;
    object-position: center;
}


/* ----------------- 6. Responsive Breakpoints (Mobile) ----------------- */

@media (max-width: 1024px) {
    .process-section {
        min-height: auto;
        /* Allow height to collapse */
        padding: 40px 0;
        margin-bottom: 5vh;
    }

    .process-inner-section {
        flex-direction: column;
        gap: 20px;
    }

    .process-container-section,
    .process-right-section {
        /* Both columns take full width and static positioning */
        width: 100%;
        max-width: 100%;
        position: static;
        align-self: auto;
        margin-left: 0;
        padding-top: 0;
        margin-bottom: 0;
    }

    /* Order the image above the content for mobile */
    .process-container-section {
        order: 1;
    }

    .process-right-section {
        order: 2;
        padding-top: 20px;
    }

    .right-section-heading h3 {
        font-size: 40px;
    }

    .right-section-heading {
        margin-bottom: 5vh;
    }

    .process-point-section {
        margin-bottom: 15px;
    }

    .container-img {
        transform: none;
        /* Remove desktop scale on mobile */
    }
}

@media (max-width: 600px) {
    .right-section-heading h3 {
        font-size: 32px;
    }

    .process-inner-section {
        padding: 0 16px;
    }
}



/* =========================================================
                RIGHT SIDE
========================================================= */

.process-right-section {

    width: 42%;

    display: flex;
    flex-direction: column;

    padding-top: 8vh;

}

/* =========================================================
                SUB HEADING
========================================================= */

.right-section-sub-heading {

    margin-bottom: 24px;

}

.sub-heading-section h2 {

    width: fit-content;

    display: flex;
    align-items: center;
    gap: 10px;

    padding:
        14px 20px;

    border-radius: 100px;

    background:
        rgba(4, 69, 105, 0.06);

    color: var(--primary-color);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.sub-heading-section h2::before {

    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--secondary-color);

}

/* =========================================================
                MAIN HEADING
========================================================= */

.right-section-heading {

    margin-bottom: 60px;

}

.right-section-heading h3 {

    font-size: 56px;

    line-height: 0.95;

    letter-spacing: -3px;

    font-weight: 800;

    color: #102131;

    font-family: 'Outfit', sans-serif;

}

.right-section-heading h3 span {

    background:
        linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* =========================================================
                PROCESS CARDS
========================================================= */

.process-point-section {

    position: relative;

    display: flex;
    flex-direction: column;

    gap: 16px;

    text-decoration: none;

    overflow: hidden;

    padding:
        30px;

    margin-bottom: 20px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid rgba(4, 69, 105, 0.08);

    box-shadow:
        0 20px 50px rgba(4, 69, 105, 0.06);

    backdrop-filter: blur(12px);

    transition: 0.45s ease;

}

/* ACTIVE BORDER */

.process-point-section::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0%;

    border-radius: 100px;

    background:
        linear-gradient(to bottom,
            var(--primary-color),
            var(--secondary-color));

    transition: 0.45s ease;

}

/* HOVER */

.process-point-section:hover {

    transform:
        translateX(10px);

    box-shadow:
        0 35px 80px rgba(4, 69, 105, 0.10);

}

.process-point-section:hover::before {

    height: 100%;

}

/* =========================================================
                NUMBER
========================================================= */

.point-number-sec {

    width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background:
        rgba(4, 69, 105, 0.05);

    color:
        var(--primary-color);

    font-size: 22px;
    font-weight: 700;

    transition: 0.4s ease;

}

/* NUMBER HOVER */

.process-point-section:hover .point-number-sec {

    background:
        linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    color: #fff;

    box-shadow:
        0 20px 40px rgba(4, 69, 105, 0.14);

}

/* =========================================================
                TITLE
========================================================= */

.process-point-heading h6 {

    color: #102131;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.2;

}

/* =========================================================
                DESCRIPTION
========================================================= */

.process-point-description {

    color: #647381;

    font-size: 15px;

    line-height: 1.9;

}

/* =========================================================
                ICON
========================================================= */

.point-icon-section {

    margin-top: 10px;

}

.point-icon-section i {

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(4, 69, 105, 0.05);

    color:
        var(--primary-color);

    font-size: 18px;

    transition: 0.4s ease;

}

/* ICON HOVER */

.process-point-section:hover .point-icon-section i {

    background:
        linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    color: #fff;

    transform:
        rotate(-45deg) scale(1.08);

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .process-right-section {

        width: 100%;

        padding-top: 40px;

    }

}

@media(max-width:768px) {

    .right-section-heading h3 {

        font-size: 42px;

        line-height: 1;

        letter-spacing: -2px;

    }

    .process-point-section {

        padding:
            24px;

    }

    .process-point-heading h6 {

        font-size: 24px;

    }

}

@media(max-width:500px) {

    .right-section-heading h3 {

        font-size: 34px;

    }

}

.container-empty-section {
    width: 60%;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --nx-blue: #044569;
    --nx-green: #058F48;
    --nx-dark: #102131;
    --nx-sub: #647381;
    --nx-border: rgba(4, 69, 105, 0.08);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

.nx-quote-section {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(to bottom, #f8fbfd 0%, #edf3f6 100%);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

/* BACKGROUND SYSTEMS */
.nx-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(4, 69, 105, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 69, 105, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.8;
    z-index: 1;
}

.nx-glow {

    position: absolute;

    width: min(1000px, 90vw);

    aspect-ratio: 1/1;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(5, 143, 72, 0.05) 0%,
            transparent 70%);

    top: -300px;
    right: -200px;

    filter: blur(80px);

    z-index: 1;

    pointer-events: none;

}

.nx-container {

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;

    padding:
        0 clamp(16px, 3vw, 40px);

    position: relative;

    z-index: 5;

}

/* THE MAIN GRID CONTAINER (overflow: visible allows sticky children to track) */
.nx-main-panel {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr) minmax(0, 0.85fr);

    gap: 60px;

    align-items: start;

}

/* =========================================================
                        LEFT WORKSPACE SIDE
    ========================================================== */
.nx-form-side {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(4, 69, 105, 0.04);
}

.nx-top-content {
    margin-bottom: 50px;
}

.nx-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(4, 69, 105, 0.04);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid var(--nx-border);
}

.nx-label span {
    width: 6px;
    height: 6px;
    background: var(--nx-green);
    border-radius: 50%;
}

.nx-label p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nx-blue);
    margin: 0;
}

.nx-top-content h2 {
    color: var(--nx-dark);
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 900;
    margin: 0 0 20px 0;
}

.nx-intro-desc {
    color: var(--nx-sub);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 580px;
}

/* INTEGRATED PREMIUM FIELD DESIGN PATTERNS */
.nx-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.nx-input-group {

    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

}

.nx-input-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--nx-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nx-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nx-input-wrapper.align-start {
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 22px;
    font-size: 16px;
    color: var(--nx-sub);
    opacity: 0.6;
    pointer-events: none;
    transition: color 0.3s ease;
}

.mt-textarea {
    top: 22px;
}

.text-green {
    color: var(--nx-green) !important;
    opacity: 0.9;
}

.text-blue {
    color: var(--nx-blue) !important;
    opacity: 0.9;
}

.nx-input-group input,
.nx-input-group select,
.nx-input-group textarea {
    width: 100%;
    border: 1px solid var(--nx-border);
    outline: none;
    padding: 18px 22px 18px 54px;
    border-radius: 16px;
    background: #f8fbfd;
    color: var(--nx-dark);
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    transition: all 0.4s var(--ease-premium);
}

.nx-input-group select {
    appearance: none;
    cursor: pointer;
}

.nx-input-group textarea {
    height: 140px;
    resize: none;
    line-height: 1.6;
}

/* INPUT VISUAL FEEDBACK LAYER */
.nx-input-group input:focus,
.nx-input-group select:focus,
.nx-input-group textarea:focus {
    border-color: var(--nx-blue);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(4, 69, 105, 0.05);
}

.nx-input-group input:focus+.input-icon,
.nx-input-group select:focus+.input-icon,
.nx-input-group textarea:focus+.input-icon {
    color: var(--nx-blue);
    opacity: 1;
}

.nx-submit-btn {

    width: 100%;

    min-width: 0;

    height: 68px;

    border: none;

    outline: none;

    border-radius: 18px;

    margin-top: 15px;

    background:
        linear-gradient(
            135deg,
            #032b44 0%,
            #044569 55%,
            #058F48 100%
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding:
        0 10px 0 20px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

}
.btn-arrow-box {
    width: 50px;
    height: 50px;
    background: var(--nx-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: transform 0.4s var(--ease-premium);
}

.nx-submit-btn:hover {
    background: var(--nx-blue);
    transform: translateY(-3px);
    box-shadow: 0 30px 50px rgba(4, 69, 105, 0.2);
}

.nx-submit-btn:hover .btn-arrow-box {
    transform: scale(1.05) translateX(2px);
}


/* =========================================================
                    RIGHT COMMAND STICKY CARD
    ========================================================== */
.nx-info-sticky-wrapper {

    position: sticky;

    top: 155px;

    z-index: 10;

    min-width: 0;

    align-self: start;

}

.nx-info-side {
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, #044569 0%, #0c334a 100%);
    border-radius: 32px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(4, 69, 105, 0.15);
}

/* Ambient card interior background graphic */
.nx-info-side::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 143, 72, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.nx-status-card {
    margin-bottom: 45px;
}

.status-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #27ff81;
    border-radius: 50%;
    box-shadow: 0 0 12px #27ff81;
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-live p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.nx-status-card h3 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

/* TELEMETRY ADAPTER CARDS */
.nx-info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nx-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-icon-slot {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--nx-green);
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nx-info-card span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nx-info-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

/* SYSTEM METRICS DATAVIEW */
.nx-metrics {
    display: flex;
    gap: 16px;
    margin-top: 35px;
}

.metric-box {
    flex: 1;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.metric-box h5 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 4px 0;
    letter-spacing: -1px;
}

.metric-box h5 span {
    font-size: 16px;
    font-weight: 400;
    color: var(--nx-green);
}

.metric-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}


/* =========================================================
                        RESPONSIVE TRANSLATION
    ========================================================== */
@media (max-width: 1200px) {
    .nx-main-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nx-info-sticky-wrapper {
        position: relative;
        top: 0;
    }
}
@media (max-width: 768px) {

    .nx-quote-section {

        padding: 90px 0;

        overflow: hidden;

    }

    .nx-container {

        padding: 0 16px;

    }

    .nx-main-panel {

        gap: 28px;

    }

    .nx-form-side,
    .nx-info-side {

        padding: 28px 18px;

        border-radius: 22px;

    }

    .nx-form-row {

        flex-direction: column;

        gap: 18px;

    }

    .nx-top-content {

        margin-bottom: 36px;

    }

    .nx-top-content h2 {

        font-size: 34px;

        line-height: 1;

        letter-spacing: -2px;

    }

    .nx-intro-desc {

        font-size: 14px;

        line-height: 1.7;

    }

    .nx-status-card h3 {

        font-size: 28px;

    }

    .nx-info-card {

        padding: 18px;

        gap: 14px;

    }

    .card-icon-slot {

        width: 42px;
        height: 42px;

        min-width: 42px;

    }

    .nx-info-card h4 {

        font-size: 15px;

        word-break: break-word;

    }

    .nx-metrics {

        flex-direction: column;

    }

    .nx-submit-btn {

        height: 64px;

        font-size: 14px;

        padding: 0 8px 0 18px;

    }

    .btn-arrow-box {

        width: 42px;
        height: 42px;

        min-width: 42px;

    }

}

.nx-main-panel,
.nx-form-side,
.nx-info-side {

    min-width: 0;

}