.testimonial-section {
    padding: 80px 20px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial-container {
    max-width: 800px;
    text-align: center;
}

.testimonial-logo {
    margin-bottom: 30px;
}

.testimonial-logo img {
    max-height: 50px;
    width: auto;
   
    /* Optional: makes logo look more professional */
    opacity: 0.8;
}

.testimonial-content {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0 0 30px 0;
    position: relative;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.author-position {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .testimonial-content {
        font-size: 18px;
    }
}












.case-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: box-shadow 0.25s;
    background: var(--white);
}

.case-featured:hover {
    box-shadow: var(--sh-lg);
}

@media (max-width: 767px) {
    .case-featured {
        grid-template-columns: 1fr;
    }
}

.case-img {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
}

.case-img-1 {
    background: linear-gradient(135deg, #001e4a, #004a99 70%, #0061c2);
}

.case-img-2 {
    background: linear-gradient(135deg, #001e4a, #003a80);
    min-height: 160px;
}

.case-img-3 {
    background: linear-gradient(135deg, #0a1628, #004a99 80%, #f97316);
    min-height: 160px;
}

.case-body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.case-tag {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.case-body h3,
.case-body h5 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.case-body h3 {
    font-size: 1.2rem;
}

.case-body h5 {
    font-size: 0.95rem;
}

.case-body p {
    font-size: 0.875rem;
    color: var(--muted);
    flex: 1;
    line-height: 1.7;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.18s;
}

.case-link:hover {
    gap: 10px;
}

.case-sm {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-sm);
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    display: flex;
    flex-direction: column;
}

.case-sm:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}