/* Start custom CSS for html, class: .elementor-element-6546edf */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');

.modern-card {
    font-family: 'Vazirmatn', sans-serif; 
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298); 
    color: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    margin: 30px auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}



.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.card-rating {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffd700;
}

.card-body {
    text-align: right;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.card-footer {
    display: flex;
    gap: 15px;
    grid-column: 1 / -1;
    justify-content: center;
}



.btn {
    padding: 12px 28px;
    border-radius: 50px; 
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #ff4757; 
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.btn-primary:hover {
    background-color: #ff3838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2); 
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .modern-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px 20px;
    }

    .card-header {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .card-logo {
        width: 60px;
        height: 60px;
    }
    
    .card-body {
        margin-bottom: 20px;
    }

    .card-footer {
        flex-direction: column; 
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */