/* Why Choose Us Styles */
.deam-why-choose-us {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.deam-wcu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.deam-wcu-heading-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f68511, transparent);
}

.deam-wcu-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    white-space: nowrap;
}

.deam-wcu-subheading {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.deam-wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.deam-wcu-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deam-wcu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.deam-wcu-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
}

.deam-wcu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.deam-wcu-icon-placeholder {
    background: linear-gradient(135deg, #0048a5, #f68511);
}

.deam-wcu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}

.deam-wcu-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .deam-wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .deam-wcu-grid {
        grid-template-columns: 1fr;
    }
    .deam-wcu-header h2 {
        font-size: 1.4rem;
    }
}