/* TASK 1: Enterprise Trust Banner Styles */
.enterprise-trust-banner {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    text-align: center;
    font-size: 0.95rem;
    color: #4a5568;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: #1b3664; /* Theme accent color */
}

/* TASK 9: Engagement Models Section */
.engagement-models-section {
    padding: 60px 20px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.engagement-title {
    font-size: 2.2rem;
    color: #1b3664;
    margin-bottom: 10px;
}

.engagement-sub {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.engagement-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #1b3664;
}

.engagement-card h4 {
    color: #1b3664;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.engagement-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* TASK 7: Improve Testimonial Typography */
.xamin-testimonial, 
.elementor-testimonial-content {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    font-style: italic;
    padding: 20px;
    background: #fdfdfd;
    border-left: 4px solid #1b3664;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.xamin-testimonial-name, 
.elementor-testimonial-name {
    font-weight: 700 !important;
    color: #1b3664 !important;
    margin-top: 15px !important;
}



.footer-default-menu .secondary-cta {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-container {
        flex-direction: column;
        gap: 10px;
    }
}
