.section-stands-apart .stands-apart-card-list .stands-apart-list-title:before {
    background: linear-gradient(0deg, #0B2031, #0B2031),
        linear-gradient(0deg, #000000, #000000) !important;
}

.app-card-5 .card-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: white-space 0.3s ease;
}

.app-card-5:hover .card-text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

input:not([type="radio"]):not([type="checkbox"]) {
    background: #000000 !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1.5px solid rgba(250, 250, 250, 0.6) !important;
    color: #fff !important;
    font-size: 15px !important;
    padding: 8px 0 !important;
    outline: none !important;
    width: 100% !important;
}

input:not([type="radio"]):not([type="checkbox"])::placeholder {
    color: #fff !important;
}

select {
    width: 100%;
    background: #000000 !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    font-size: 15px !important;
    padding: 8px 0 !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat !important;
    background-position: right 4px center !important;
}

select option {
    background: #000000 !important;
    color: #fff !important;
}

textarea {
    width: 100% !important;
    background: #000000 !important;
    border: none !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    padding: 8px 0 !important;
    outline: none !important;
    resize: none !important;
    font-family: inherit !important;
    caret-color: #fff !important;
}

textarea::placeholder {
    color: #fff !important;
}

input:not([type="radio"]):not([type="checkbox"]):focus {
    border-bottom: 1.5px solid rgba(250, 250, 250, 0.6) !important;
    box-shadow: none !important;
}

select:focus {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: none !important;
}

textarea:focus {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: none !important;
}

input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    background: #000000 !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    position: relative !important;
}

input[type="checkbox"]:checked {
    background: #000000 !important;
    border: 1.5px solid #ffffff !important;
}

input[type="checkbox"]:checked::after {
    content: '' !important;
    position: absolute !important;
    left: 4px !important;
    top: 1px !important;
    width: 5px !important;
    height: 9px !important;
    border: 2px solid #ffffff !important;
    border-top: none !important;
    border-left: none !important;
    transform: rotate(45deg) !important;
}

.drag-drop-zone {
    background: #000000 !important;
    border: 1.5px dashed rgba(255, 255, 255, 0.6) !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 15px !important;
    padding: 32px 16px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.drag-drop-zone:hover,
.drag-drop-zone.dragover {
    border-color: rgba(255, 255, 255, 1) !important;
}

.drag-drop-zone p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 15px !important;
}

.drag-drop-zone span {
    color: #ffffff !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

/* Case Studies — Key Project Improvements stat cards */
.stat-card {
    padding: 24px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, #4dabf7, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}