/* home page */

:root {
    --bg-color: #000000;
    --brand-orange: #FF744D;
    --brand-orange-dark: #D94D26;
    --gray-1: #C5C4C8;
    --gray-2: #A9A8AE;
    --white-soft: #FCFCFF;
    --white-warm: #FFF3F0;
}

/* SECTION */
.hybrid-section {
    width: 100%;
}



/* HEADER */
.hybrid-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 1128px;
}

.hybrid-breadcrumbs {
    display: flex;
    gap: 8px;
    color: var(--gray-2);
    font-size: 14px;
}

.hybrid-breadcrumbs .active {
    font-weight: 600;
}

.hybrid-title {
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
}

.hybrid-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--gray-2);
    max-width: 1128px;
}

.hybrid-container {

    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* WORKFLOW */
.hybrid-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.hybrid-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px;
    gap: 8px;
    width: 322px;
    height: 134px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #496166;
    box-shadow: 0 8px 25px rgba(62, 198, 224, 0.25);
}

.hybrid-card:hover {
    transform: translateY(-5px);
}



.hybrid-card-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gray-1);
}

.hybrid-card-title {
    font-size: 28px;
    color: var(--white-warm);
    margin: 0px;
}

/* ARROW */
.hybrid-arrow {
    width: 40px;
    height: 2px;
    background-color: var(--brand-orange);
    position: relative;
}

.hybrid-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--brand-orange);
    border-right: 2px solid var(--brand-orange);
    transform: rotate(45deg);
}

/* FOOTER */
.hybrid-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.hybrid-footer-text {
    font-size: 16px;
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hybrid-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    gap: 6px;
    background: linear-gradient(180deg, #FF744D, #D94D26);
    border-radius: 8px;
    color: var(--white-warm);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.hybrid-cta-button:hover {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hybrid-workflow {
        flex-direction: column;
        gap: 40px;
    }

    .hybrid-arrow {
        transform: rotate(90deg);
    }

    .hybrid-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hybrid-container {
        padding: 80px 20px;
    }
}

.hybrid-breadcrumbs span {
    margin-right: 5px;
}

.hybrid-breadcrumbs .active {
    font-weight: bold;
}

nav.hybrid-breadcrumbs span a {
    color: #A9A8AE;
    text-decoration: none;
}


/* home page ends */



/* how we work page starts */


/* Section */
.how-we-work-platform {
    color: #a1a1aa;
    padding: 80px 0;
}

/* Header */
.how-we-work-platform-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.how-we-work-platform-header h1 {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-we-work-platform-header p {
    font-size: 20px;
    color: #A9A8AE;
}

/* Grid */
.how-we-work-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .how-we-work-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-we-work-feature-grid {
        grid-template-columns: 1fr;
    }

    .how-we-work-platform {
        padding: 0px;
    }

    .cards-section {
        display: flex;
        flex-direction: column;

    }

    .how-we-work-actions {
        margin-top: 0px !important;
    }

    .how-we-work-feature-card {
        margin: 20px;
    }

    .how-we-work-platform-header {
        order: 1;
        margin-bottom: 10px;
    }

    /* Buttons second (upar aa jayenge) */
    .how-we-work-actions {
        order: 2;
        margin: 20px 0;
    }

    /* Cards last */
    .how-we-work-feature-grid {
        order: 3;
    }


}

/* Card */
.how-we-work-feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;


}

.how-we-work-feature-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}



.how-we-work-cyan {
    color: #22d3ee;
}

.how-we-work-orange {
    color: #f97316;
}

/* Text */
.how-we-work-feature-card h3 {
    color: #FFF3F0;
    opacity: 90%;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 300;
}

.how-we-work-feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Full width card */
.how-we-work-full-width-card {
    grid-column: 1 / -1;
    padding: 60px 40px;
}

/* Buttons */
.how-we-work-actions {
    text-align: center;
    margin-top: 60px;
}

.how-we-work-btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 5px;
    font-weight: bold;
}

.how-we-work-btn-secondary {
    background: #18181b;
    color: #C5C4C8;
    border: 1px solid #333;
    text-decoration: none;
}

.how-we-work-btn-secondary:hover {
    background: #27272a;
}

.how-we-work-btn-primary {
    background: #ea580c;
    color: #C5C4C8;
    text-decoration: none;
}

.how-we-work-btn-primary:hover {
    background: #f97316;
}


/* how we work page ends */


/* NDA section starts */

/* SECTION */
.nda-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #020b14;
}

/* BACKGROUND IMAGE */
.nda-bg {
    position: absolute;
    inset: 0;
    background: url('https://hotspringd1dev.wpenginepowered.com/wp-content/uploads/2026/04/ee8283c86d1ef93c618c617d5b6dad7830ea58ee-1-scaled.webp') center/cover no-repeat;
    z-index: 0;
}

/* 🔥 BOTTOM → TOP GRADIENT OVERLAY */
.nda-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(2, 11, 20, 1) 0%,
            rgba(2, 11, 20, 0.9) 25%,
            rgba(2, 11, 20, 0.7) 40%,
            rgba(2, 11, 20, 0.3) 70%,
            rgba(2, 11, 20, 0) 100%);
}

/* CENTER RECTANGLE IMAGE */
.nda-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    max-width: 90%;
    z-index: 1;
    opacity: 0.8;
    mix-blend-mode: overlay;
}

.nda-center-img img {
    width: 100%;
    display: block;
    filter: brightness(0.4) contrast(1.2);
}

/* GLASS / BLUR EFFECT */
.nda-center-img::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
}

/* CONTENT */
.nda-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* LOGO */
.nda-logo img {
    width: 100px;
    margin-bottom: 20px;
}

/* TITLE */
.nda-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.nda-description {
    font-size: 20px;
    margin: 0 auto 50px;
    line-height: 1.6;
    width: 1100px;
}

/* BRANDS */
.nda-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 110px;
    margin-top: 70px;
}

.nda-brands img {
    height: 60px;
    opacity: 0.75;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.nda-brands img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .nda-description {
        width: unset;
    }

}

/* NDA section ends */


/* CTA section starts */

/* WRAPPER */
.cta-sec-wrapper {
    padding: 60px 20px;
}

/* BOX */
.cta-sec-box {
    padding: 20px 0px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LEFT CONTENT */
.cta-sec-content {
    max-width: 600px;
}

.cta-sec-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #A9A8AE;
}

.cta-sec-text {
    font-size: 16px;
    color: #A9A8AE;
    line-height: 1.6;
}

/* BUTTONS */
.cta-sec-buttons {
    display: flex;
    gap: 15px;
}

/* COMMON BUTTON */
.cta-sec-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* OUTLINE */
.cta-sec-btn-outline {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(240, 237, 254, 0.1);
    color: #C5C4C8;
}

.cta-sec-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* PRIMARY */
.cta-sec-btn-primary {
    background: linear-gradient(135deg, #ff7a18, #ff4d2d);
    color: #fff;
    font-weight: 500;
}

.cta-sec-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 100, 50, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    /* Wrapper spacing remove */
    .cta-sec-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Box spacing adjust */
    .cta-sec-box {

        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    /* Content center */
    .cta-sec-content {
        text-align: center;
    }

    /* Buttons center */
    .cta-sec-buttons {
        justify-content: center;

        width: 100%;
        align-items: center;
        gap: 10px;
    }
}


/* CTA section ends */