
.tech-cross { position: absolute; width: 15px; height: 15px; }
.tech-cross::before, .tech-cross::after { content: ''; position: absolute; background-color: #f27024; }
.tech-cross::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.tech-cross::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }

.text-outline-white { color: transparent; -webkit-text-stroke: 1.5px #ffffff; }
.text-mask { display: block; overflow: hidden; }

.video-wrapper { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; will-change: transform, border-radius; background-color: #2a7bc7; z-index: 1; }
.curved-panel { border-top-left-radius: 80px; background: #ffffff; border-top: 1px solid rgba(42, 123, 199, 0.2); border-left: 1px solid rgba(42, 123, 199, 0.2); box-shadow: -20px -20px 60px rgba(42, 123, 199, 0.15); will-change: transform; }
.premium-btn-circle { background: #2a7bc7; color: #ffffff; }
.premium-btn-circle:hover { background: #f27024; box-shadow: 0 0 20px rgba(242, 112, 36, 0.4); }
.vertical-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent); }

/* ========================================================
   SECTION 2: CUSTOM TABBED CARDS (Based on Screenshot_11)
   ======================================================== */

.tabbed-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    /* Creates the indent for the tab to sit in */
    border-top-left-radius: 45px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(42, 123, 199, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tabbed-card:hover {
    box-shadow: 0 20px 40px rgba(42, 123, 199, 0.15);
}

/* The Custom Top-Left Number Tab */
.tab-number {
    position: absolute;
    top: -15px; /* Sticks out the top */
    left: -15px; /* Sticks out the left */
    width: 50px;
    height: 50px;
    background: #eef4f9; /* Light soft blue background */
    color: #2a7bc7; /* Brand Blue text */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.05);
    z-index: 10;
}

/* Modifiers for different card styles (Blue / Orange accents) */
.card-blue {
    background: #2a7bc7;
    color: #ffffff;
}
.card-blue .tab-number {
    background: #2a7bc7;
    color: #ffffff;
    border: 4px solid #ffffff; /* White border to separate it from the blue card */
    top: -20px;
    left: -20px;
}

.card-orange-border {
    border: 2px solid #f27024;
}
.card-orange-border .tab-number {
    background: #f27024;
    color: #ffffff;
}

/* Connecting dashed line behind the cards */
.hierarchy-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed rgba(42, 123, 199, 0.3);
    z-index: 0;
    pointer-events: none;
}


/* ========================================================
           SECTION 3: EDITORIAL ASYMMETRICAL GRID
           ======================================================== */
.s3-container {
    background-color: #ffffff;
    color: #2a7bc7; /* Brand Blue */
}

.s3-img-block {
    position: relative;
    overflow: hidden;
    background-color: #050a10;
}

.s3-parallax-img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    opacity: 0.8;
    will-change: transform;
}

/* Product List Hover Effects */
.s3-product-item {
    border-bottom: 2px solid rgba(42, 123, 199, 0.1);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.s3-product-item:hover {
    border-bottom-color: #f27024; /* Brand Orange */
    padding-left: 1rem;
}
.s3-product-item::before {
    content: '—';
    color: transparent;
    margin-right: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}
.s3-product-item:hover::before {
    color: #f27024;
    margin-right: 1rem;
}

/* Solid Color Blocks */
.s3-block-blue { background-color: #2a7bc7; color: #ffffff; }
.s3-block-orange { background-color: #f27024; color: #ffffff; }
.s3-block-light { background-color: #f4f7fb; }





/* ========================================================
           SECTION 4: STRATEGIC PARTNERSHIPS MARQUEE (Brief 4.12)
           ======================================================== */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Faded edges to make the logos smoothly appear/disappear */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 6rem; /* Space between logos */
    padding-right: 6rem;
    min-width: 100%;
    animation: scroll-marquee 40s linear infinite;
}

/* Pauses the scrolling when the user hovers over the track */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.partner-logo {
    height: 50px; /* Standardize height for all logos */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(40%);
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}
