/* Image */
.image-wrapper {
    border-radius: 18px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge */
.tech-badge {
    background: rgba(0, 180, 255, 0.15);
    color: #00c2ff;
    border: 1px solid rgba(0, 180, 255, 0.4);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600 !important;
    letter-spacing: 0.1px;
}

/* Title */
.title {
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.2;
}

/* Subtitle */
.subtitle {
    color: #9bb0c9;
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

/* Section headings */
.section-title {
    color: #00c2ff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.4px;
    font-weight: 600;
}

/* Paragraphs */
:root {
    --primary-color: #00b5d9;
    --secondary-color: #0084ff;
    --accent-color: #ff6b35;
    --dark-bg: #0a0e27;
    --darker-bg: #070b1f;
    --card-bg: #121629;
    --light-text: #e8eaf0;
    --muted-text: #9ca3af;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
}

/* Outcomes */
.outcomes-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.outcomes-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.outcomes-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00c2ff;
    font-weight: bold;
}

/* Result */
.result-text {
    color: #cfd9e8;
}

.result-text span {
    color: #00c2ff;
    font-weight: 700;
}

/* card */
.use-case-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 168, 255, 0.3);
}

.case-top-section {
    display: grid;
    gap: 0;
    align-items: stretch;
}
.case-image-container {
    width: 100%;
    height: 100%;
    /* min-height: 310px; */
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(0, 132, 255, 0.1) 100%);
}

.case-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
@media (min-width: 991px) {
    .case-top-section {
        grid-template-columns: 450px 1fr;
    }
    .case-image-container {
        min-height: 310px;
    }
}
.use-case-card:hover .case-image-container img {
    transform: scale(1.05);
}

.case-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 0%, rgba(18, 22, 41, 0.3) 100%);
}

.case-header {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.9), rgba(0, 132, 255, 0.9));
    /* background: linear-gradient(135deg,#00eaff,#0088ff); */
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.case-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    width: fit-content;
}

.case-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.case-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.case-body {
    padding: 3rem;
}

.case-section {
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-label i {
    font-size: 1rem;
}

.case-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.case-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    font-size: 1rem;
    color: var(--muted-text);
    line-height: 1.6;
}

.feature-text strong {
    color: var(--light-text);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .outcomes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outcome-card {
    background: rgba(0, 168, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 168, 255, 0.2);
    background: rgba(0, 168, 255, 0.08);
    border-color: var(--primary-color);
}

.outcome-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.outcome-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* Partner Badge */
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    width: fit-content;
}